See :meth:`.ColumnOperators.__neg__`.
(
expr: ColumnElement[Any], op: OperatorType, **kw: Any
)
| 264 | |
| 265 | |
| 266 | def _neg_impl( |
| 267 | expr: ColumnElement[Any], op: OperatorType, **kw: Any |
| 268 | ) -> ColumnElement[Any]: |
| 269 | """See :meth:`.ColumnOperators.__neg__`.""" |
| 270 | return UnaryExpression(expr, operator=operators.neg, type_=expr.type) |
| 271 | |
| 272 | |
| 273 | def _bitwise_not_impl( |
nothing calls this directly
no test coverage detected