vortex_sequence/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4mod array;
5mod compress;
6mod compute;
7mod serde;
8
9/// Represents the equation A\[i\] = a * i + b.
10/// This can be used for compression, fast comparisons and also for row ids.
11pub use array::{SequenceArray, SequenceEncoding, SequenceVTable};
12pub use compress::sequence_encode;
13
14// TODO(joe): hook up to the compressor
15// TODO(joe): support comparisons with other operators
16// TODO(joe): support list in expr pushdown