pub fn between(
arr: &dyn Array,
lower: &dyn Array,
upper: &dyn Array,
options: &BetweenOptions,
) -> VortexResult<ArrayRef>
Expand description
Compute between (a <= x <= b).
This is an optimized implementation that is equivalent to (a <= x) AND (x <= b)
.
The BetweenOptions
defines if the lower or upper bounds are strict (exclusive) or non-strict
(inclusive).