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

Inclusive upper bound of the domain.

Example

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