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

Exclusive upper bound of the domain.

Example

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