(keys ...string)
| 253 | } |
| 254 | |
| 255 | func (ss StringSet) Add(keys ...string) { |
| 256 | for _, key := range keys { |
| 257 | ss[key] = struct{}{} |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | func (ss StringSet) Contains(key string) (yes bool) { |
| 262 | _, yes = ss[key] |
no outgoing calls
no test coverage detected