Trait BinaryNumericFn

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

Required Methods§

Source

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

Implementors§