Trait TakeFromKernel

Source
pub trait TakeFromKernel: VTable {
    // Required method
    fn take_from(
        &self,
        indices: &Self::Array,
        array: &dyn Array,
    ) -> VortexResult<Option<ArrayRef>>;
}

Required Methods§

Source

fn take_from( &self, indices: &Self::Array, array: &dyn Array, ) -> VortexResult<Option<ArrayRef>>

Create a new array by taking the values from the array at the given indices.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§