pub fn percentile_default_pivot<T: Ord + Clone>(
values: &mut [T],
target: impl OrderedListIndex,
) -> MeanValue<T>
Expand description
Get the value at target
in values
.
Uses the best method available (percentile_rand
if feature percentile-rand
is enabled,
else pivot_fn::middle
)