Trait lazysort::Sorted[][src]

pub trait Sorted {
    type Item: Ord;
    fn sorted(self) -> LazySortIterator<Self::Item>
Notable traits for LazySortIterator<T>
impl<T> Iterator for LazySortIterator<T> where
    T: Ord
type Item = T;
; }

Associated Types

Required methods

Implementors