Trait lazysort::Sorted [] [src]

pub trait Sorted {
    type Item: Clone + Ord;
    fn sorted(self) -> LazySortIterator<Self::Item, fn(&Self::Item, &Self::Item) -> Ordering>;
}

Associated Types

type Item: Clone + Ord

Required Methods

fn sorted(self) -> LazySortIterator<Self::Item, fn(&Self::Item, &Self::Item) -> Ordering>

Implementors