Boolean expression. Test if array has elements in common with an argument array expression.
(self, other: typing_Any)
| 403 | ) |
| 404 | |
| 405 | def overlap(self, other: typing_Any) -> ColumnElement[bool]: |
| 406 | """Boolean expression. Test if array has elements in common with |
| 407 | an argument array expression. |
| 408 | """ |
| 409 | return self.operate(OVERLAP, other, result_type=sqltypes.Boolean) |
| 410 | |
| 411 | comparator_factory = Comparator |
| 412 |