anyAndEvery method Null safety

ArrayExpressionIn anyAndEvery(
  1. VariableExpressionInterface variable
)

Starts an ANY AND EVERY quantified range predicate and defines a variable.

An ANY AND EVERY quantified array expression returns true if the array is NOT empty and at least one of the elements in the array matches.

Implementation

static ArrayExpressionIn anyAndEvery(VariableExpressionInterface variable) =>
    ArrayExpressionInImpl(Quantifier.anyAndEvery, variable);