A synonym for the ARRAY-level :meth:`.ARRAY.Comparator.all` method. See that method for details.
(
other: typing_Any,
arrexpr: _ColumnExpressionArgument[_T],
operator: OperatorType = operators.eq,
)
| 61 | |
| 62 | |
| 63 | def All( |
| 64 | other: typing_Any, |
| 65 | arrexpr: _ColumnExpressionArgument[_T], |
| 66 | operator: OperatorType = operators.eq, |
| 67 | ) -> ColumnElement[bool]: |
| 68 | """A synonym for the ARRAY-level :meth:`.ARRAY.Comparator.all` method. |
| 69 | See that method for details. |
| 70 | |
| 71 | """ |
| 72 | |
| 73 | return arrexpr.all(other, operator) # type: ignore[no-any-return, union-attr] # noqa: E501 |
| 74 | |
| 75 | |
| 76 | class array(expression.ExpressionClauseList[_T]): |