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
The following methods should have their return type adapted.
SortedMap#remove(K)
SortedMap<K, V>
SortedMap#put(K, V)
SortedMap#put(K, V, BinaryOperator)
Currently they always need to be re-casted to (SortedMap(K, V)) which makes the code a bit ugly.
(SortedMap(K, V))
The text was updated successfully, but these errors were encountered:
Thanks, the library is due for a rev, so I’ll fix this and do a release.
Sorry, something went wrong.
fix issues #10 and #11, add WIP durable collection code
b75512e
Fixed in 0.2.0-alpha1
0.2.0-alpha1
No branches or pull requests
The following methods should have their return type adapted.
SortedMap#remove(K)
should returnSortedMap<K, V>
SortedMap#put(K, V)
should returnSortedMap<K, V>
SortedMap#put(K, V, BinaryOperator)
should returnSortedMap<K, V>
Currently they always need to be re-casted to
(SortedMap(K, V))
which makes the code a bit ugly.The text was updated successfully, but these errors were encountered: