Trait lazysort::SortedBy[][src]

pub trait SortedBy {
    type Item;
    fn sorted_by<F>(self, _: F) -> LazySortIteratorBy<Self::Item, F>
Notable traits for LazySortIteratorBy<T, F>
impl<T, F> Iterator for LazySortIteratorBy<T, F> where
    F: Fn(&T, &T) -> Ordering
type Item = T;

    where
        F: Fn(&Self::Item, &Self::Item) -> Ordering
; }

Associated Types

Required methods

Implementors