OCLOperators including
m ((username removed) (log details removed): Moving to Documentation namespace)
(Updated Edited template to July 12, 2025.)
 
(3 intermediate revisions by one other user 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''.  
Returns a collection containing all elements of ''self'' followed by ''object''.  
Line 20: Line 21:
|}
|}
[[Category:OCL Collection Operators]]
[[Category:OCL Collection Operators]]
{{Edited|July|12|2025}}

Latest revision as of 05:57, 20 January 2025

This page was created by Alexandra on 2017-08-14. Last edited by Edgar on 2025-01-20.


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'}