pub trait SortOrderUnstableComparator<F> {
// Required method
fn sort_order_unstable_by(&self, compare: F) -> Vec<usize>;
}Expand description
Trait providing function to compute and return the sorted permutation order. This sort is unstable (does not preserve original order of equal elements, but may be faster than the stable version).
Required Methods§
Sourcefn sort_order_unstable_by(&self, compare: F) -> Vec<usize>
fn sort_order_unstable_by(&self, compare: F) -> Vec<usize>
Returns the unstable sorted permutation order (Vec<usize>) using the specified comparator.