Method
equals
(
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
Tested by
no test coverage detected