OCLOperators including
No edit summary
(Replacing message template with parser tag)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<message>Write the content here to display this box</message>


Returns a collection containing all elements of ''self'' followed by ''object''. '''**Note**:''' at the time of writing, the OCL standard library sports a bug that changes *OrderedSets* in *Sets* when including elements.
Returns a collection containing all elements of ''self'' followed by ''object''.  
 
'''**Note**:''' at the time of writing, the OCL standard library sports a bug that changes *OrderedSets* in *Sets* when including elements.
{| class="wikitable"
{| class="wikitable"
!Expression
!Expression
Line 17: Line 20:
|Set{'a', 'c', 'b'}
|Set{'a', 'c', 'b'}
|}
|}
[[Category:OCLOperators]]
[[Category:OCL Collection Operators]]
{{Edited|July|12|2024}}

Latest revision as of 07:51, 17 June 2024


Returns a collection containing all elements of self followed by object.

**Note**: at the time of writing, the OCL standard library sports a bug that changes *OrderedSets* in *Sets* when including elements.

Expression Result
Sequence{'a', 'b'}->including('c') Sequence{'a', 'b', 'c'}
Bag{'a', 'b'}->including('c') Bag{'a', 'c', 'b'}
OrderedSet{'a', 'b'}->including('c') Set{'a', 'c', 'b'}
Set{'a', 'b'}->including('c') Set{'a', 'c', 'b'}
This page was edited 95 days ago on 06/17/2024. What links here