(
self, against: Optional[OperatorType] = None
)
| 2376 | return self.type.comparator_factory(self) # type: ignore |
| 2377 | |
| 2378 | def self_group( |
| 2379 | self, against: Optional[OperatorType] = None |
| 2380 | ) -> Union[Self, Grouping[Any]]: |
| 2381 | if against is operators.in_op: |
| 2382 | return Grouping(self) |
| 2383 | else: |
| 2384 | return self |
| 2385 | |
| 2386 | def bindparams( |
| 2387 | self, |