MCPcopy Index your code
hub / github.com/pydata/xarray / equals

Method equals

xarray/core/indexes.py:1601–1606  ·  view source on GitHub ↗
(
        self, other: Index, *, exclude: frozenset[Hashable] | None = None
    )

Source from the content-addressed store, hash-verified

1599 return IndexSelResult(results)
1600
1601 def equals(
1602 self, other: Index, *, exclude: frozenset[Hashable] | None = None
1603 ) -> bool:
1604 if not isinstance(other, CoordinateTransformIndex):
1605 return False
1606 return self.transform.equals(other.transform, exclude=exclude)
1607
1608 def rename(
1609 self,

Callers

nothing calls this directly

Calls 1

equalsMethod · 0.45

Tested by

no test coverage detected