Struct ndarray::iter::Windows [] [src]

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

Window producer and iterable

See .windows() for more information.

Trait Implementations

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

The element produced per iteration.

Dimension type

[src]

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 Windows<'a, A, D>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, A, D> IntoIterator for Windows<'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?

[src]

Creates an iterator from a value. Read more