pub trait TakeFn {
// Required method
fn take(&self, indices: &Array) -> VortexResult<Array>;
}
Required Methods§
fn take(&self, indices: &Array) -> VortexResult<Array>
Implementors§
impl TakeFn for BoolArray
impl TakeFn for ChunkedArray
impl TakeFn for ConstantArray
impl TakeFn for ExtensionArray
impl TakeFn for NullArray
impl TakeFn for PrimitiveArray
impl TakeFn for SparseArray
impl TakeFn for StructArray
impl TakeFn for VarBinArray
impl TakeFn for VarBinViewArray
Take involves creating a new array that references the old array, just with the given set of views.