Trait lazysort::SortedPartial [] [src]

pub trait SortedPartial {
    type Item: Clone + PartialOrd;
    fn sorted_partial(self, first: bool) -> LazySortIterator<Self::Item, fn(&Self::Item, &Self::Item) -> Ordering>;
}

Associated Types

Required Methods

fn sorted_partial(self, first: bool) -> LazySortIterator<Self::Item, fn(&Self::Item, &Self::Item) -> Ordering>

Implementors