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 seequence
pub trait Flatten<T, M: ArraySize> {
type OutputSize: ArraySize;
// Required method
fn flatten(self) -> Array<T, Self::OutputSize>;
}Defines a sequence of sequences that can be merged into a bigger overall seequence