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 operator;
8mod serde;
9
10/// Represents the equation A\[i\] = a * i + b.
11/// This can be used for compression, fast comparisons and also for row ids.
12pub use array::{SequenceArray, SequenceEncoding, SequenceVTable};
13pub use compress::sequence_encode;
14
15// TODO(joe): hook up to the compressor
16// TODO(joe): support comparisons with other operators
17// TODO(joe): support list in expr pushdown