A 'null' operation available on all types, used for testing.
(self, other: Any)
| 264 | return self.operate(inv) |
| 265 | |
| 266 | def _null_operate(self, other: Any) -> Operators: |
| 267 | """A 'null' operation available on all types, used for testing.""" |
| 268 | |
| 269 | return self.operate(null_op, other) |
| 270 | |
| 271 | def op( |
| 272 | self, |