[][src]Trait peekmore::PeekMore

pub trait PeekMore: Iterator + Sized {
    fn peekmore(self) -> PeekMoreIterator<Self>;
}

Trait which allows you to create an iterator which allows us to peek at any unconsumed element.

Required methods

fn peekmore(self) -> PeekMoreIterator<Self>

Create an iterator where we can look (peek) forward multiple times from an existing iterator.

Loading content...

Implementors

impl<I: Iterator> PeekMore for I[src]

Loading content...