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