Determines if every item of this set is in the other set.
(other StringSet)
| 65 | |
| 66 | // Determines if every item of this set is in the other set. |
| 67 | func (set StringSet) IsSuperset(other StringSet) bool { |
| 68 | return other.IsSubset(set) |
| 69 | } |
| 70 | |
| 71 | // Returns a new set with all items in both sets. |
| 72 | func (set StringSet) Union(other StringSet) StringSet { |