(
self, op: OperatorType, *other: Any, **kwargs: Any
)
| 1867 | return self.expression.property # type: ignore |
| 1868 | |
| 1869 | def operate( |
| 1870 | self, op: OperatorType, *other: Any, **kwargs: Any |
| 1871 | ) -> ColumnElement[Any]: |
| 1872 | return op(self.expression, *other, **kwargs) |
| 1873 | |
| 1874 | def reverse_operate( |
| 1875 | self, op: OperatorType, other: Any, **kwargs: Any |