Trait Unflatten

pub trait Unflatten<M>
where
    M: ArraySize,

Defines a sequence that can be split into a sequence of smaller sequences of uniform size.

Associated Types

type Part;

Part of the array we're decomposing into.

Required Methods

fn unflatten(self) -> Array<Self::Part, M>

Unflatten array into Self::Part chunks.

Implementors