MCPcopy Create free account
hub / github.com/cel-expr/cel-go / MakeAll

Function MakeAll

parser/macro.go:469–471  ·  view source on GitHub ↗

MakeAll expands the input call arguments into a comprehension that returns true if all of the elements in the range match the predicate expressions: .all( , )

(eh ExprHelper, target ast.Expr, args []ast.Expr)

Source from the content-addressed store, hash-verified

467// elements in the range match the predicate expressions:
468// <iterRange>.all(<iterVar>, <predicate>)
469func MakeAll(eh ExprHelper, target ast.Expr, args []ast.Expr) (ast.Expr, *common.Error) {
470 return makeQuantifier(quantifierAll, eh, target, args)
471}
472
473// MakeExists expands the input call arguments into a comprehension that returns true if any of the
474// elements in the range match the predicate expressions:

Callers

nothing calls this directly

Calls 1

makeQuantifierFunction · 0.85

Tested by

no test coverage detected