pub trait Flatten<T, M: ArraySize> {
type OutputSize: ArraySize;
// Required method
fn flatten(self) -> Array<T, Self::OutputSize>;
}Expand description
Defines a sequence of sequences that can be merged into a bigger overall sequence.
Required Associated Types§
Sourcetype OutputSize: ArraySize
type OutputSize: ArraySize
Size of the output array.
Required Methods§
Sourcefn flatten(self) -> Array<T, Self::OutputSize>
fn flatten(self) -> Array<T, Self::OutputSize>
Flatten array.