set icon indicating copy to clipboard operation
set copied to clipboard

Include support to Generics

Open rodrigo-brito opened this issue 2 years ago • 0 comments

We can support multiple primitive types in a single data structure with the new generic interface:

type Element interface {
    int | int64 | float | float64 | string
}

And replace the custom methods NewLinkedHashSetINT64 with NewLinkedHashSet that support multiple types.

rodrigo-brito avatar Mar 16 '22 16:03 rodrigo-brito