(&self, mut f: impl FnMut(usize, usize, &T) -> bool)
| 656 | |
| 657 | #[inline] |
| 658 | pub fn any_cell(&self, mut f: impl FnMut(usize, usize, &T) -> bool) -> bool { |
| 659 | self.cells().any(|(row, col, value)| f(row, col, value)) |
| 660 | } |
| 661 | |
| 662 | #[inline] |
| 663 | pub fn all_cells(&self, mut f: impl FnMut(usize, usize, &T) -> bool) -> bool { |