[][src]Crate peekmore

Structs

PeekMoreIterator

This iterator allows us to peek multiple times without consuming a value. In reality the underlying iterator will be consumed, but the values will be stored in a local vector. This vector allows us to move the frame which we can see.

Traits

CreatePeekMoreIterator

Trait which allows one to create an iterator which allows us to peek multiple times forward.

PeekView

Adds functions which enable non-consuming viewing of non-consumed elements of an iterator.