tensorstore.Dim.__eq__(self, other: Dim) bool

Compares for equality with another interval.

In addition to the bounds, the values of label, implicit_lower, and implicit_upper are 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