Struct itertools::ChunksLazy [] [src]

pub struct ChunksLazy<I> where I: Iterator {
    // some fields omitted
}

ChunkLazy is the storage for a lazy chunking operation.

ChunksLazy behaves just like GroupByLazy: it is iterable, and it only buffers if several chunk iterators are alive at the same time.

This type implements IntoIterator (it is not an iterator itself), because the chunk iterators need to borrow from this value. It should be stored in a local variable or temporary and iterated.

Iterator element type is Chunk, each chunk's iterator.

See .chunks_lazy() for more information.

Trait Implementations

impl<'a, I> IntoIterator for &'a ChunksLazy<I> where I: Iterator, I::Item: 'a
[src]

type Item = Chunk<'a, I>

The type of the elements being iterated over.

type IntoIter = Chunks<'a, I>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more