Trait lazysort::SortedBy [] [src]

pub trait SortedBy<'a, T: Clone> {
    fn sorted_by<F>(self, F) -> LazySortIterator<'a, T> where F: Fn(&T, &T) -> Ordering + 'a;
}

Required Methods

fn sorted_by<F>(self, F) -> LazySortIterator<'a, T> where F: Fn(&T, &T) -> Ordering + 'a

Implementors