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§
Sourcefn reiterate(self) -> Reiterator<Self::IntoIter>
fn reiterate(self) -> Reiterator<Self::IntoIter>
Create a Reiterator from anything that can be turned into an Iterator.