(self)
| 3003 | return self |
| 3004 | |
| 3005 | def _negate(self) -> Any: |
| 3006 | grouped = self.self_group(against=operators.inv) |
| 3007 | assert isinstance(grouped, ColumnElement) |
| 3008 | return UnaryExpression(grouped, operator=operators.inv) |
| 3009 | |
| 3010 | |
| 3011 | class BooleanClauseList(ExpressionClauseList[bool]): |
nothing calls this directly
no test coverage detected