Struct ndarray::iter::ExactChunks [] [src]

pub struct ExactChunks<'a, A: 'a, D> { /* fields omitted */ }

Exact chunks producer and iterable.

See .exact_chunks() for more information.

Trait Implementations

impl<'a, A, D: Dimension> NdProducer for ExactChunks<'a, A, D>
[src]

Dimension type

The element produced per iteration.

This trait is private to implement; this method exists to make it impossible to implement outside the crate. Read more

impl<'a, A, D: Clone> Clone for ExactChunks<'a, A, D>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, A, D> IntoIterator for ExactChunks<'a, A, D> where D: Dimension, A: 'a
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more