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