Skip to main content

BetweenKernel

Trait BetweenKernel 

Source
pub trait BetweenKernel: VTable {
    // Required method
    fn between(
        array: &Self::Array,
        lower: &dyn Array,
        upper: &dyn Array,
        options: &BetweenOptions,
        ctx: &mut ExecutionCtx,
    ) -> VortexResult<Option<ArrayRef>>;
}
Expand description

Execute kernel for between: perform the actual between check, potentially reading buffers.

Returns Ok(None) if this kernel cannot handle the given inputs.

Required Methods§

Source

fn between( array: &Self::Array, lower: &dyn Array, upper: &dyn Array, options: &BetweenOptions, ctx: &mut ExecutionCtx, ) -> VortexResult<Option<ArrayRef>>

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§