[][src]Trait lazysort::SortedBy

pub trait SortedBy {
    type Item;
    fn sorted_by<F>(self, _: F) -> LazySortIteratorBy<Self::Item, F>
    where
        F: Fn(&Self::Item, &Self::Item) -> Ordering
; }

Associated Types

type Item

Loading content...

Required methods

fn sorted_by<F>(self, _: F) -> LazySortIteratorBy<Self::Item, F> where
    F: Fn(&Self::Item, &Self::Item) -> Ordering

Loading content...

Implementors

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

type Item = T

Loading content...