[][src]Trait agnes::access::SortOrderUnstable

pub trait SortOrderUnstable {
    fn sort_order_unstable(&self) -> Vec<usize>;
}

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

fn sort_order_unstable(&self) -> Vec<usize>

Returns the unstable sorted permutation order (Vec<usize>).

Loading content...

Implementors

impl<DI> SortOrderUnstable for DI where
    DI: DataIndex,
    <DI as DataIndex>::DType: Ord
[src]

Loading content...