Trait lazysort::SortedBy [] [src]

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

Associated Types

Required Methods

Implementors