(self, other: Any, op: Callable[[Any, Any], bool])
| 202 | return key in self._data |
| 203 | |
| 204 | def _op(self, other: Any, op: Callable[[Any, Any], bool]) -> bool: |
| 205 | return ( |
| 206 | op(self._to_tuple_instance(), other._to_tuple_instance()) |
| 207 | if isinstance(other, Row) |
| 208 | else op(self._to_tuple_instance(), other) |
| 209 | ) |
| 210 | |
| 211 | __hash__ = BaseRow.__hash__ |
| 212 |