[][src]Trait lazysort::Sorted

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

Associated Types

type Item: Ord

Loading content...

Required methods

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

Loading content...

Implementors

impl<T, I> Sorted for I where
    T: Eq + Ord,
    I: Iterator<Item = T>, 
[src]

type Item = T

Loading content...