OCLOperators forAll
This page was created by Alexandra on 2017-08-13. Last edited by Stephanie on 2025-02-11.
Returns true if all the elements of a collection validate the condition expression, otherwise returns false.
Expression | Result |
---|---|
Sequence{2.3, 5.2}->forAll(x|x> 3) | false |
Sequence{2.3, 5.2}->forAll(x|x> 1.2) | true |
The reverse of this operator is ->exists.