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