Trait CompareKernel

Source
pub trait CompareKernel: Encoding {
    // Required method
    fn compare(
        &self,
        lhs: &Self::Array,
        rhs: &dyn Array,
        operator: Operator,
    ) -> VortexResult<Option<ArrayRef>>;
}

Required Methods§

Source

fn compare( &self, lhs: &Self::Array, rhs: &dyn Array, operator: Operator, ) -> VortexResult<Option<ArrayRef>>

Implementors§