tensorstore.IndexDomain.shape : tuple[int, ...]

Shape of the domain.

Example

>>> domain = ts.IndexDomain(inclusive_min=[1, 2, 3], shape=[3, 4, 5])
>>> domain.shape
(3, 4, 5)