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)
| 467 | // elements in the range match the predicate expressions: |
| 468 | // <iterRange>.all(<iterVar>, <predicate>) |
| 469 | func 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: |
nothing calls this directly
no test coverage detected