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