()
| 36 | } |
| 37 | |
| 38 | func (s *StringSet) ToSlice() []string { |
| 39 | result := make([]string, 0) |
| 40 | for k, _ := range s.data { |
| 41 | result = append(result, k) |
| 42 | } |
| 43 | return result |
| 44 | } |
| 45 | |
| 46 | func (s *StringSet) Delete(item string) { |
| 47 | delete(s.data, item) |
no outgoing calls
no test coverage detected