String - returns printable string of the set.
()
| 140 | |
| 141 | // String - returns printable string of the set. |
| 142 | func (set StringSet) String() string { |
| 143 | return fmt.Sprintf("%s", set.ToSlice()) |
| 144 | } |
| 145 | |
| 146 | // NewStringSet - creates new string set. |
| 147 | func NewStringSet() StringSet { |