(self, other)
| 12372 | |
| 12373 | @final |
| 12374 | def __ixor__(self, other) -> Self: |
| 12375 | # error: Unsupported left operand type for ^ ("Type[NDFrame]") |
| 12376 | return self._inplace_method(other, type(self).__xor__) # type: ignore[operator] |
| 12377 | |
| 12378 | # ---------------------------------------------------------------------- |
| 12379 | # Misc methods |
nothing calls this directly
no test coverage detected