OCLOperators forAll
No edit summary
(Automatically adding template at the end of the page.)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Returns true if the all the elements contained in ''self'' validate the condition ''expr'', false otherwise.
Returns true if all the elements contained in ''self'' validate the condition ''expr -'' otherwise, false.
{| class="wikitable"
{| class="wikitable"
!Expression
!Expression
!Result
!Result
|-
|-
|Sequence{2.3, 5.2}->forAll(self > 3)
|<nowiki>Sequence{2.3, 5.2}->forAll(x|x> 3)</nowiki>
|false
|false
|-
|-
|Sequence{2.3, 5.2}->forAll(self > 1.2)
|<nowiki>Sequence{2.3, 5.2}->forAll(x|x> 1.2)</nowiki>
|true
|true
|}
|}
The reverse of this operator is [[OCLOperators exists|->exists]]
The reverse of this operator is [[OCLOperators exists|->exists]].
[[Category:OCLOperators]]
[[Category:OCL Collection Operators]]
{{Edited|July|12|2024}}

Latest revision as of 15:41, 10 February 2024

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

This page was edited 95 days ago on 02/10/2024. What links here