MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / All

Function All

lib/sqlalchemy/dialects/postgresql/array.py:63–73  ·  view source on GitHub ↗

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,
)

Source from the content-addressed store, hash-verified

61
62
63def 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
76class array(expression.ExpressionClauseList[_T]):

Callers

nothing calls this directly

Calls 1

allMethod · 0.45

Tested by

no test coverage detected