Trait lazysort::SortedPartial [−][src]
pub trait SortedPartial {
type Item: PartialOrd;
fn sorted_partial_first(self) -> LazySortIteratorPartialFirst<Self::Item>ⓘNotable traits for LazySortIteratorPartialFirst<T>impl<T> Iterator for LazySortIteratorPartialFirst<T> where
T: PartialOrd, type Item = T;
;
fn sorted_partial_last(self) -> LazySortIteratorPartialLast<Self::Item>ⓘNotable traits for LazySortIteratorPartialLast<T>impl<T> Iterator for LazySortIteratorPartialLast<T> where
T: PartialOrd, type Item = T;
;
}
Associated Types
type Item: PartialOrd
Required methods
fn sorted_partial_first(self) -> LazySortIteratorPartialFirst<Self::Item>ⓘNotable traits for LazySortIteratorPartialFirst<T>impl<T> Iterator for LazySortIteratorPartialFirst<T> where
T: PartialOrd, type Item = T;
Notable traits for LazySortIteratorPartialFirst<T>
impl<T> Iterator for LazySortIteratorPartialFirst<T> where
T: PartialOrd, type Item = T;
fn sorted_partial_last(self) -> LazySortIteratorPartialLast<Self::Item>ⓘNotable traits for LazySortIteratorPartialLast<T>impl<T> Iterator for LazySortIteratorPartialLast<T> where
T: PartialOrd, type Item = T;
Notable traits for LazySortIteratorPartialLast<T>
impl<T> Iterator for LazySortIteratorPartialLast<T> where
T: PartialOrd, type Item = T;