Creates and returns a reference to an empty set.
()
| 14 | |
| 15 | // Creates and returns a reference to an empty set. |
| 16 | func NewStringSet() StringSet { |
| 17 | return make(StringSet) |
| 18 | } |
| 19 | |
| 20 | // Creates and returns a reference to an empty set with a capacity. |
| 21 | func NewStringSetWithCapacity(capacity int) StringSet { |
no outgoing calls
no test coverage detected