(&self, out: &mut [T])
| 976 | |
| 977 | #[inline] |
| 978 | pub fn write_flat(&self, out: &mut [T]) -> Option<usize> |
| 979 | where |
| 980 | T: Copy, |
| 981 | { |
| 982 | let len = Self::flat_len(); |
| 983 | if out.len() < len { |
| 984 | return None; |
| 985 | } |
| 986 | out[..len].copy_from_slice(self.as_slice()); |
| 987 | Some(len) |
| 988 | } |
| 989 | |
| 990 | #[inline] |
| 991 | pub fn col(&self, col: usize) -> [T; ROWS] |
no test coverage detected