Expand description
Operations on crate::Cluster
s.
This attempts to implement all functionality of this module but using clusters. This turned out to be quite difficult.
Modules§
Functions§
- Convenience function for
percentile
with the 50% mark as the target andpivot_fn::rand
(if thepercentile-rand
feature is enabled, elsepivot_fn::middle
). - Percentile by sorting.
- Same as
naive_percentile
but with a custom comparator function. - quickselect algorithm
- Same as
percentile
but with a custom comparator function. - Get the value at
target
invalues
. Uses the best method available (percentile_rand
if featurepercentile-rand
is enabled, elsepivot_fn::middle
) - Same as
percentile_default_pivot
but with a custom comparator function. - percentile_
rand percentile-rand
Convenience function forpercentile
withpivot_fn::rand
.