Reiterate

Trait Reiterate 

Source
pub trait Reiterate: IntoIterator {
    // Required method
    fn reiterate(self) -> Reiterator<Self::IntoIter>;
}
Expand description

Pipe the output of an IntoIter to make a Reiterator.

Required Methods§

Source

fn reiterate(self) -> Reiterator<Self::IntoIter>

Create a Reiterator from anything that can be turned into an Iterator.

Implementors§