pub trait NumericKernel: Encoding {
// Required method
fn numeric(
&self,
array: &Self::Array,
other: &dyn Array,
op: NumericOperator,
) -> VortexResult<Option<ArrayRef>>;
}
pub trait NumericKernel: Encoding {
// Required method
fn numeric(
&self,
array: &Self::Array,
other: &dyn Array,
op: NumericOperator,
) -> VortexResult<Option<ArrayRef>>;
}