pub fn array3x3<T, A>(value: A) -> [[T; 3]; 3]where
    A: Into<[[T; 3]; 3]>,
Expand description

Force a conversion into a 3x3-element array.