[][src]Trait lazysort::SortedPartial

pub trait SortedPartial {
    type Item: PartialOrd;
    fn sorted_partial_first(self) -> LazySortIteratorPartialFirst<Self::Item>;
fn sorted_partial_last(self) -> LazySortIteratorPartialLast<Self::Item>; }

Associated Types

type Item: PartialOrd

Loading content...

Required methods

fn sorted_partial_first(self) -> LazySortIteratorPartialFirst<Self::Item>

fn sorted_partial_last(self) -> LazySortIteratorPartialLast<Self::Item>

Loading content...

Implementors

impl<T, I> SortedPartial for I where
    T: PartialOrd,
    I: Iterator<Item = T>, 
[src]

Loading content...