StrSet is consisted of string items.
| 14 | |
| 15 | // StrSet is consisted of string items. |
| 16 | type StrSet struct { |
| 17 | *TSet[string] |
| 18 | once sync.Once |
| 19 | } |
| 20 | |
| 21 | // NewStrSet create and returns a new set, which contains un-repeated items. |
| 22 | // The parameter `safe` is used to specify whether using set in concurrent-safety, |
nothing calls this directly
no outgoing calls
no test coverage detected