Trait SuperIterator

Source
pub trait SuperIterator<I>:
    Iterator<Item = I>
    + ExactSizeIterator
    + DoubleEndedIterator
    + FusedIterator { }
Expand description

A super trait of most common traits implemented on iterators.

Implementors§