Trait BinaryBooleanFn

Source
pub trait BinaryBooleanFn<A> {
    // Required method
    fn binary_boolean(
        &self,
        array: A,
        other: &dyn Array,
        op: BinaryOperator,
    ) -> VortexResult<Option<ArrayRef>>;
}

Required Methods§

Source

fn binary_boolean( &self, array: A, other: &dyn Array, op: BinaryOperator, ) -> VortexResult<Option<ArrayRef>>

Implementors§