NewStringSet - creates new string set.
()
| 145 | |
| 146 | // NewStringSet - creates new string set. |
| 147 | func NewStringSet() StringSet { |
| 148 | return StringSet(New[string]()) |
| 149 | } |
| 150 | |
| 151 | // CreateStringSet - creates new string set with given string values. |
| 152 | func CreateStringSet(sl ...string) StringSet { |