We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
s := sets.New(0, 1, 2, 10, 11, 100) fmt.Println(s)
gives:
0,1,10,100,11,2
https://go.dev/play/p/y78ROJLKJOe
I expect keys to be sorted by their value, not their string representation.
The text was updated successfully, but these errors were encountered:
Well, that would require elements to be ordered which is a stricter constraint than comparable. :(
ordered
comparable
Sorry, something went wrong.
it's a whole nightmare with comparable vs ordered... see the JSON Marshaler for the pain that it is
No branches or pull requests
gives:
https://go.dev/play/p/y78ROJLKJOe
I expect keys to be sorted by their value, not their string representation.
The text was updated successfully, but these errors were encountered: