Union - returns the union with given set as new set.
(sset StringSet)
| 110 | |
| 111 | // Union - returns the union with given set as new set. |
| 112 | func (set StringSet) Union(sset StringSet) StringSet { |
| 113 | return StringSet(Set[string](set).Union(Set[string](sset))) |
| 114 | } |
| 115 | |
| 116 | // MarshalJSON - converts to JSON data. |
| 117 | func (set StringSet) MarshalJSON() ([]byte, error) { |
no test coverage detected