- tensorstore.Dim.inclusive_max : int
Inclusive upper bound of the interval.
Equal to
self.exclusive_max - 1
. If the interval is unbounded above, equal to the special value of+inf
.Example
>>> ts.Dim(inclusive_min=5, inclusive_max=10).inclusive_max 10 >>> ts.Dim(exclusive_max=5).inclusive_max 4 >>> ts.Dim().inclusive_max 4611686018427387903