pub trait MinMaxFn<A> {
    // Required method
    fn min_max(&self, array: A) -> VortexResult<Option<MinMaxResult>>;
}Expand description
Computes the min and max of an array, returning the (min, max) values
If the array is empty or has only nulls, the result is None.