- tensorstore.IndexDomain.implicit_upper_bounds : tuple[bool, ...]
Indicates whether the upper bound of each dimension is implicit or explicit.
Example
>>> domain = ts.IndexDomain(rank=3) >>> domain.implicit_upper_bounds (True, True, True) >>> domain = ts.IndexDomain(shape=[2, 3, 4]) >>> domain.implicit_upper_bounds (False, False, False) >>> domain = ts.IndexDomain(inclusive_min=[4, 5, 6]) >>> domain.implicit_upper_bounds (True, True, True) >>> domain = ts.IndexDomain(exclusive_max=[4, 5, 6], ... implicit_upper_bounds=[False, True, False]) >>> domain.implicit_upper_bounds (False, True, False)