-
Notifications
You must be signed in to change notification settings - Fork 12
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
Implements __hash__
for collections
#81
Conversation
@Julian Hi Julian, just a friendly ping, this PR is ready for review whenever you're ready :)) |
Hey! Apologies, I missed it! Thanks for the ping, will have a look. |
I've been a bit tied up but just mentioning I still will try to look at this in the next few days, sorry for the delay! |
No worries at all! Take your time :)) |
Thanks again, good work! I've merged and tagged a release, so this should go out imminently. |
This PR adds
__hash__
toHashTrieSet
,HashTrieMap
, andList
so that the instances of them are hashable (if underlaying elements are hashable).Related to #50