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