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