Trait lazysort::SortedBy [] [src]

pub trait SortedBy {
    type Item: Clone;
    fn sorted_by<F>(self, F) -> LazySortIterator<Self::Item, F> where F: Fn(&Self::Item, &Self::Item) -> Ordering;
}

Associated Types

type Item: Clone

Required Methods

fn sorted_by<F>(self, F) -> LazySortIterator<Self::Item, F> where F: Fn(&Self::Item, &Self::Item) -> Ordering

Implementors