set icon indicating copy to clipboard operation
set copied to clipboard

A simple Set data structure implementation in Go (Golang) using LinkedHashMap.

Results 2 set issues
Sort by recently updated
recently updated
newest added

I had trouble getting the variadic parameter to work and the simplest solution I found was to change it to receive a slice. So references like the following will not...

enhancement
help wanted

We can support multiple primitive types in a single data structure with the new generic interface: ``` type Element interface { int | int64 | float | float64 | string...

enhancement