(self)
| 53 | return projection.items() |
| 54 | |
| 55 | def keys(self) -> list[str]: |
| 56 | return self._keys |
| 57 | |
| 58 | def _iter_col_row(self, row: Sequence["CellT"]) -> Iterator[tuple["CellT", Column]]: |
| 59 | for val, col in zip_longest(row, self.columns): |
no outgoing calls