Currently the Sort1dExt trait provides sorting/partitioning methods based on
quickselect. What's the reason for choosing this over pdqsort as used in
sort_unstable in STD.
histogram/bins.rs has several calls on sort_unstable, and how about a
feature flag rayon for its parallel sort?
Sort1dExt
trait provides sorting/partitioning methods based onquickselect
. What's the reason for choosing this overpdqsort
as used insort_unstable
in STD.histogram/bins.rs
has several calls onsort_unstable
, and how about a feature flagrayon
for its parallel sort?