Trait BetweenKernel

Source
pub trait BetweenKernel: Encoding {
    // Required method
    fn between(
        &self,
        arr: &Self::Array,
        lower: &dyn Array,
        upper: &dyn Array,
        options: &BetweenOptions,
    ) -> VortexResult<Option<ArrayRef>>;
}

Required Methods§

Source

fn between( &self, arr: &Self::Array, lower: &dyn Array, upper: &dyn Array, options: &BetweenOptions, ) -> VortexResult<Option<ArrayRef>>

Implementors§