pub trait TooDeeIterator: Iterator {
    // Required method
    fn num_cols(&self) -> usize;
}
Expand description

An Iterator that knows how many columns it emits per row.

Required Methods§

source

fn num_cols(&self) -> usize

The number of columns the iterator emits per row

Implementors§