Trait ring::polyfill::array_flatten::ArrayFlatten

source ·
pub trait ArrayFlatten {
    type Output;

    // Required method
    fn array_flatten(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn array_flatten(self) -> Self::Output

Returns the flattened form of a

Implementations on Foreign Types§

source§

impl<T> ArrayFlatten for [[T; 4]; 4]

source§

impl<T> ArrayFlatten for [[T; 8]; 2]

Implementors§