vortex_sequence/
lib.rs

1mod array;
2mod compute;
3mod serde;
4
5/// Represents the equation A\[i\] = a * i b.
6/// This can be used for compression, fast comparisons and also for row ids.
7pub use array::{SequenceArray, SequenceEncoding, SequenceVTable};
8
9// TODO(joe): hook up to the compressor
10// TODO(joe): support comparisons with other operators
11// TODO(joe): support list in expr pushdown