Trait otter::utils::IteratorExt[][src]

pub trait IteratorExt<U, E, F>: Iterator where
    F: FnMut(Self::Item) -> Result<U, Loop<E>>, 
{ type Return: Iterator<Item = U>; type TryReturn: Iterator<Item = Result<U, E>>; fn map_loop(self, f: F) -> Self::Return
    where
        E: EmptyType
;
fn try_map_loop(self, f: F) -> Self::TryReturn; }

Associated Types

Required methods

Implementors