tensorstore.IndexDomain.implicit_lower_bounds : tuple[bool, ...]

Indicates whether the lower bound of each dimension is implicit or explicit.

Example

>>> domain = ts.IndexDomain(rank=3)
>>> domain.implicit_lower_bounds
(True, True, True)
>>> domain = ts.IndexDomain(inclusive_min=[2, 3, 4])
>>> domain.implicit_lower_bounds
(False, False, False)
>>> domain = ts.IndexDomain(exclusive_max=[2, 3, 4])
>>> domain.implicit_lower_bounds
(True, True, True)
>>> domain = ts.IndexDomain(shape=[4, 5, 6])
>>> domain.implicit_lower_bounds
(False, False, False)
>>> domain = ts.IndexDomain(inclusive_min=[4, 5, 6],
...                         implicit_lower_bounds=[False, True, False])
>>> domain.implicit_lower_bounds
(False, True, False)