(&mut self, mut f: impl FnMut(usize, usize) -> T)
| 689 | |
| 690 | #[inline] |
| 691 | pub fn fill_with(&mut self, mut f: impl FnMut(usize, usize) -> T) -> &mut Self { |
| 692 | for (row, col, value) in self.cells_mut() { |
| 693 | *value = f(row, col); |
| 694 | } |
| 695 | self |
| 696 | } |
| 697 | |
| 698 | #[inline] |
| 699 | pub fn copy_from_slice(&mut self, slice: &[T]) -> bool |