Trait ripple::conv::iter::ChunkIterate[][src]

pub trait ChunkIterate<N, S> where
    N: Scalar,
    S: Storage<N, Dynamic, Dynamic>, 
{ fn chunks(
        &self,
        sz: (usize, usize)
    ) -> PatchIterator<'_, N, S, Dynamic, Dynamic>
Notable traits for PatchIterator<'a, N, S, W, V>
impl<'a, N, S, W, V> Iterator for PatchIterator<'a, N, S, W, V> where
    N: Scalar,
    S: Storage<N, Dynamic, Dynamic>,
    W: Dim,
    V: Dim
type Item = Matrix<N, Dynamic, Dynamic, SliceStorage<'a, N, Dynamic, Dynamic, S::RStride, S::CStride>>;
; }
Expand description

Returns a WindowIterator over non-overlapping contiguous regions

Required methods

Implementations on Foreign Types

Implementors