MakeExists expands the input call arguments into a comprehension that returns true if any of the elements in the range match the predicate expressions: .exists( , )
(eh ExprHelper, target ast.Expr, args []ast.Expr)
| 474 | // elements in the range match the predicate expressions: |
| 475 | // <iterRange>.exists(<iterVar>, <predicate>) |
| 476 | func MakeExists(eh ExprHelper, target ast.Expr, args []ast.Expr) (ast.Expr, *common.Error) { |
| 477 | return makeQuantifier(quantifierExists, eh, target, args) |
| 478 | } |
| 479 | |
| 480 | // MakeExistsOne expands the input call arguments into a comprehension that returns true if exactly |
| 481 | // one of the elements in the range match the predicate expressions: |
no test coverage detected