pub fn compare(
left: &dyn Array,
right: &dyn Array,
operator: Operator,
) -> VortexResult<ArrayRef>Expand description
Compares two arrays and returns a new boolean array with the result of the comparison.
The returned array is lazy (a ScalarFnArray) and will be evaluated on demand.