tensorstore.IndexTransform.input_exclusive_max : tuple[int, ...]

Exclusive upper bound of the input domain.

Alias for the exclusive_max property of the domain.

Example

>>> transform = ts.IndexTransform(input_inclusive_min=[1, 2, 3],
...                               input_shape=[3, 4, 5])
>>> transform.input_exclusive_max
(4, 6, 8)