Expand description
Compute kernels on top of Vortex Arrays.
We aim to provide a basic set of compute kernels that can be used to efficiently index, slice, and filter Vortex Arrays in their encoded forms.
Every array variant has the ability to implement their own efficient implementations of these operators, else we will decode, and perform the equivalent operator from Arrow.
Modules§
Enums§
- Result of performing search_sorted on an Array
Traits§
- Trait providing compute functions on top of Vortex arrays.
- Searches for value assuming the array is sorted.
- Limit array to start…stop range
Functions§
- Return a new array by applying a boolean predicate to select items from a base Array.
- Search for many elements in the array.
- Return a zero-copy slice of an array, between
start
(inclusive) andend
(exclusive).