- tensorstore.Dim.__eq__(self, other: Dim) bool
Compares for equality with another interval.
In addition to the bounds, the values of
label,implicit_lower, andimplicit_upperare also taken into account.>>> a = ts.Dim(inclusive_min=5, exclusive_max=10) >>> b = ts.Dim(inclusive_min=5, inclusive_max=9) >>> a == b True