(self)
| 1515 | |
| 1516 | @cached_property |
| 1517 | def shape(self) -> tuple[T_IntOrNaN, ...]: |
| 1518 | return tuple(cached_cumsum(c, initial_zero=True)[-1] for c in self.chunks) |
| 1519 | |
| 1520 | @property |
| 1521 | def chunksize(self) -> tuple[T_IntOrNaN, ...]: |
nothing calls this directly
no test coverage detected