pub fn percentile_default_pivot_by<T: Clone>(
    values: &mut [T],
    target: impl OrderedListIndex,
    compare: &mut impl FnMut(&T, &T) -> Ordering,
) -> MeanValue<T>Expand description
Same as percentile_default_pivot but with a custom comparator function.