OCLOperators forAll
From MDrivenWiki
Returns true if the all the elements contained in self validate the condition expr, false otherwise.
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