pub struct SequenceVTable;
Expand description
Represents the equation A[i] = a * i b. This can be used for compression, fast comparisons and also for row ids.
Trait Implementations§
Source§impl ArrayVTable<SequenceVTable> for SequenceVTable
impl ArrayVTable<SequenceVTable> for SequenceVTable
fn len(array: &SequenceArray) -> usize
fn dtype(array: &SequenceArray) -> &DType
fn stats(array: &SequenceArray) -> StatsSetRef<'_>
Source§impl CanonicalVTable<SequenceVTable> for SequenceVTable
impl CanonicalVTable<SequenceVTable> for SequenceVTable
Source§fn canonicalize(array: &SequenceArray) -> VortexResult<Canonical>
fn canonicalize(array: &SequenceArray) -> VortexResult<Canonical>
Returns the canonical representation of the array. Read more
Source§fn append_to_builder(
array: &<V as VTable>::Array,
builder: &mut dyn ArrayBuilder,
) -> Result<(), VortexError>
fn append_to_builder( array: &<V as VTable>::Array, builder: &mut dyn ArrayBuilder, ) -> Result<(), VortexError>
Writes the array into a canonical builder. Read more
Source§impl CompareKernel for SequenceVTable
impl CompareKernel for SequenceVTable
fn compare( &self, lhs: &SequenceArray, rhs: &dyn Array, operator: Operator, ) -> VortexResult<Option<ArrayRef>>
Source§impl Debug for SequenceVTable
impl Debug for SequenceVTable
Source§impl EncodeVTable<SequenceVTable> for SequenceVTable
impl EncodeVTable<SequenceVTable> for SequenceVTable
Source§fn encode(
_encoding: &SequenceEncoding,
_canonical: &Canonical,
_like: Option<&SequenceArray>,
) -> VortexResult<Option<SequenceArray>>
fn encode( _encoding: &SequenceEncoding, _canonical: &Canonical, _like: Option<&SequenceArray>, ) -> VortexResult<Option<SequenceArray>>
Try to encode a canonical array into this encoding. Read more
Source§impl ListContainsKernel for SequenceVTable
impl ListContainsKernel for SequenceVTable
fn list_contains( &self, list: &dyn Array, element: &Self::Array, ) -> VortexResult<Option<ArrayRef>>
Source§impl MinMaxKernel for SequenceVTable
impl MinMaxKernel for SequenceVTable
fn min_max(&self, array: &SequenceArray) -> VortexResult<Option<MinMaxResult>>
Source§impl OperationsVTable<SequenceVTable> for SequenceVTable
impl OperationsVTable<SequenceVTable> for SequenceVTable
Source§fn slice(
array: &SequenceArray,
start: usize,
stop: usize,
) -> VortexResult<ArrayRef>
fn slice( array: &SequenceArray, start: usize, stop: usize, ) -> VortexResult<ArrayRef>
Perform a constant-time slice of the array. Read more
Source§fn scalar_at(array: &SequenceArray, index: usize) -> VortexResult<Scalar>
fn scalar_at(array: &SequenceArray, index: usize) -> VortexResult<Scalar>
Fetch the scalar at the given index. Read more
Source§impl SerdeVTable<SequenceVTable> for SequenceVTable
impl SerdeVTable<SequenceVTable> for SequenceVTable
type Metadata = ProstMetadata<SequenceMetadata>
Source§fn metadata(array: &SequenceArray) -> VortexResult<Option<Self::Metadata>>
fn metadata(array: &SequenceArray) -> VortexResult<Option<Self::Metadata>>
Exports the metadata for the array. Read more
Source§fn build(
_encoding: &SequenceEncoding,
dtype: &DType,
len: usize,
metadata: &<Self::Metadata as DeserializeMetadata>::Output,
_buffers: &[ByteBuffer],
_children: &dyn ArrayChildren,
) -> VortexResult<SequenceArray>
fn build( _encoding: &SequenceEncoding, dtype: &DType, len: usize, metadata: &<Self::Metadata as DeserializeMetadata>::Output, _buffers: &[ByteBuffer], _children: &dyn ArrayChildren, ) -> VortexResult<SequenceArray>
Build an array from its given parts.
Source§impl VTable for SequenceVTable
impl VTable for SequenceVTable
type Array = SequenceArray
type Encoding = SequenceEncoding
type ArrayVTable = SequenceVTable
type CanonicalVTable = SequenceVTable
type OperationsVTable = SequenceVTable
type ValidityVTable = SequenceVTable
type VisitorVTable = SequenceVTable
Source§type ComputeVTable = NotSupported
type ComputeVTable = NotSupported
Optionally enable implementing dynamic compute dispatch for this encoding.
Can be disabled by assigning to the
NotSupported
type.Source§type EncodeVTable = SequenceVTable
type EncodeVTable = SequenceVTable
Optionally enable the
EncodeVTable
for this encoding. This allows it to partake in
compression.
Can be disabled by assigning to the NotSupported
type.Source§type SerdeVTable = SequenceVTable
type SerdeVTable = SequenceVTable
Optionally enable serde for this encoding by implementing the
SerdeVTable
trait.
Can be disabled by assigning to the NotSupported
type.Source§fn id(_encoding: &Self::Encoding) -> EncodingId
fn id(_encoding: &Self::Encoding) -> EncodingId
Returns the ID of the encoding.
Source§fn encoding(_array: &Self::Array) -> EncodingRef
fn encoding(_array: &Self::Array) -> EncodingRef
Returns the encoding for the array.
Source§impl ValidityVTable<SequenceVTable> for SequenceVTable
impl ValidityVTable<SequenceVTable> for SequenceVTable
fn is_valid(_array: &SequenceArray, _index: usize) -> VortexResult<bool>
fn all_valid(_array: &SequenceArray) -> VortexResult<bool>
fn all_invalid(_array: &SequenceArray) -> VortexResult<bool>
fn validity_mask(array: &SequenceArray) -> VortexResult<Mask>
Source§fn valid_count(array: &<V as VTable>::Array) -> Result<usize, VortexError>
fn valid_count(array: &<V as VTable>::Array) -> Result<usize, VortexError>
Returns the number of valid elements in the array. Read more
Source§fn invalid_count(array: &<V as VTable>::Array) -> Result<usize, VortexError>
fn invalid_count(array: &<V as VTable>::Array) -> Result<usize, VortexError>
Returns the number of invalid elements in the array. Read more
Source§impl VisitorVTable<SequenceVTable> for SequenceVTable
impl VisitorVTable<SequenceVTable> for SequenceVTable
Source§fn visit_buffers(_array: &SequenceArray, _visitor: &mut dyn ArrayBufferVisitor)
fn visit_buffers(_array: &SequenceArray, _visitor: &mut dyn ArrayBufferVisitor)
Visit the buffers of the array.
Source§fn visit_children(_array: &SequenceArray, _visitor: &mut dyn ArrayChildVisitor)
fn visit_children(_array: &SequenceArray, _visitor: &mut dyn ArrayChildVisitor)
Visit the children of the array.
Auto Trait Implementations§
impl Freeze for SequenceVTable
impl RefUnwindSafe for SequenceVTable
impl Send for SequenceVTable
impl Sync for SequenceVTable
impl Unpin for SequenceVTable
impl UnwindSafe for SequenceVTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more