OCLOperators Union ( set : Set(T) ) : Set(T)
From MDrivenWiki
union ( set : Set(T) ) : Set(T)
Returns a Set containing all elements of self and all elements of *set*.
Expression | Result |
---|---|
Set{'a', 'b', 'a'}->union(Set{'b', 'c'}) | Set{'a', 'c', 'b'} |