(&self, mut f: impl FnMut(usize, usize, &T) -> bool)
| 661 | |
| 662 | #[inline] |
| 663 | pub fn all_cells(&self, mut f: impl FnMut(usize, usize, &T) -> bool) -> bool { |
| 664 | self.cells().all(|(row, col, value)| f(row, col, value)) |
| 665 | } |
| 666 | |
| 667 | #[inline] |
| 668 | pub fn count_cells(&self, mut f: impl FnMut(usize, usize, &T) -> bool) -> usize { |