- property tensorstore_demo.Dim.exclusive_max: int
Exclusive upper bound of the interval.
Equal to
self.inclusive_max + 1
. If the interval is unbounded above, equal to the special value of+inf+1
.Example
>>> ts.Dim(inclusive_min=5, inclusive_max=10).exclusive_max 11 >>> ts.Dim(exclusive_max=5).exclusive_max 5 >>> ts.Dim().exclusive_max 4611686018427387904
Last update:
Nov 16, 2024