Adds a value to a set
(value string)
| 149 | |
| 150 | // Adds a value to a set |
| 151 | func (set Set) Add(value string) Set { |
| 152 | set[value] = present{} |
| 153 | return set |
| 154 | } |
| 155 | |
| 156 | // Returns a set with any instance of 'str' removed |
| 157 | func (set Set) Removing(str string) Set { |
no outgoing calls