fn compute_min_max<T>(
array: T,
valid: impl Iterator<Item = usize>,
) -> Option<(ByteArray, ByteArray)>
Expand description
Computes the min and max for the provided array and indices
This is a free function so it can be used with downcast_op!