pub trait InsideOutIter {
    type Output;

    fn inside_out_iter(self) -> Self::Output;
}
Expand description

Wrap items of an iterator inside-out

Ideally, this would be a same trait as InsideOut, but because of potential trait impl conflicts, it’s different.

Required Associated Types§

Required Methods§

Implementors§