Skip to content
New issue

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

String() doesn't sort in natural order #4

Closed
dolmen opened this issue Feb 24, 2023 · 2 comments
Closed

String() doesn't sort in natural order #4

dolmen opened this issue Feb 24, 2023 · 2 comments

Comments

@dolmen
Copy link
Contributor

dolmen commented Feb 24, 2023

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.

@dolmen
Copy link
Contributor Author

dolmen commented Feb 24, 2023

Well, that would require elements to be ordered which is a stricter constraint than comparable. :(

@dolmen dolmen closed this as completed Feb 24, 2023
@ldemailly
Copy link
Member

it's a whole nightmare with comparable vs ordered... see the JSON Marshaler for the pain that it is

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants