Tuple of dimension names with which this NamedArray is associated.
(self)
| 492 | |
| 493 | @property |
| 494 | def dims(self) -> _Dims: |
| 495 | """Tuple of dimension names with which this NamedArray is associated.""" |
| 496 | return self._dims |
| 497 | |
| 498 | @dims.setter |
| 499 | def dims(self, value: _DimsLike) -> None: |
nothing calls this directly
no test coverage detected