Results 31 comments of Emir Pasic

@dvaerum sounds reasonable, let me mediate on this. if implemented, you are right, it should be for all structures. not sure if this would be able to copy a linked-list...

`Clone`, at least from my experience in other programming languages, usually creates the identical structure and type as the original. `Copy` could be the same, not sure what the difference...

@danielzhangy that behaviour is by design, I just have to write that in the documentation. Not sure why java does it this way, but I used their ideology: https://docs.oracle.com/javase/7/docs/api/java/util/LinkedHashMap.html >...

@danielzhangy yes, I suppose it all depends at how we define "insertion". Does placing the same element into set or map constitute insertion? According to Java, they don't treat it...

@danielzhangy thanks for the research, it gave me an idea that it's best to have both. I think I'll add that option also to the LinkedHashSet and LinkedHashMap to configure...

@danielzhangy i agree with you and i'll leave the current implementation as default, but will provide a way to modify this behavior.

For sure, I have looked into the implementation and am familiarizing myself with the technical details. Usually a trie is implemented on top of a radix tree, so that's the...

In the in the roadmap now to move GoDS to generics. This will be a major update, people will still be able to use the old way with previous versoins.

@borosr most likely it will be a different version, i.e. to indicate a breaking change according to semantic versioning. One will always be able to pull the previous V1 version....

Thanks for the input. I will check out the link for sure. The important thing for me is not to force all consumers of GoDS to switch to go 1.18....