Add - adds string to the set.
(s string)
| 63 | |
| 64 | // Add - adds string to the set. |
| 65 | func (set StringSet) Add(s string) { |
| 66 | Set[string](set).Add(s) |
| 67 | } |
| 68 | |
| 69 | // Remove - removes string in the set. It does nothing if string does not exist in the set. |
| 70 | func (set StringSet) Remove(s string) { |
no outgoing calls