- property tensorstore_demo.Dim.inclusive_min: int
Inclusive lower bound of the interval.
Equal to
self.exclusive_min + 1
. If the interval is unbounded below, equal to the special value of-inf
.Example
>>> ts.Dim(5).inclusive_min 0 >>> ts.Dim(inclusive_min=5, inclusive_max=10).inclusive_min 5 >>> ts.Dim().inclusive_min -4611686018427387903
Last update:
Nov 16, 2024