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
There are three pairs of sort(by:) and sort() methods, documented with:
sort(by:)
sort()
The sorting algorithm is not guaranteed to be stable.
OrderedDictionary.Elements.sort(by:)
OrderedDictionary.Elements.sort()
OrderedDictionary.sort(by:)
OrderedDictionary.sort()
OrderedSet.sort(by:)
OrderedSet.sort()
Should these APIs be documented like the SE-0372 implementation?
The text was updated successfully, but these errors were encountered:
Yep. I believe we can safely make this change in the next patch release, 1.0.4.
Sorry, something went wrong.
Suggested fix is up at #201 -- cc @benrimmington.
Fix is merged to release/1.0. The changes will propagate to release/1.1 and main with the next (manual) merge.
release/1.1
main
No branches or pull requests
There are three pairs of
sort(by:)
andsort()
methods, documented with:OrderedDictionary.Elements.sort(by:)
OrderedDictionary.Elements.sort()
OrderedDictionary.sort(by:)
OrderedDictionary.sort()
OrderedSet.sort(by:)
OrderedSet.sort()
Should these APIs be documented like the SE-0372 implementation?
The text was updated successfully, but these errors were encountered: