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
code:
class ComparableWrapper extends Equatable { final Object property; ComparableWrapper(this.property); @override List<Object> get props => [property]; }
v1.0.0: code:
final map = {1: '1', 2: '2'}; print(ComparableWrapper(map).hashCode); map.remove(1); print(ComparableWrapper(map).hashCode);
console: 1061099485 1061099485
v0.6.1: code:
console: 343974154 350953922
Well, I am understand you want to find a good hash function, but I think last one was better =) Thx
good
The text was updated successfully, but these errors were encountered:
Hi @Renesanse 👋 Thanks for opening an issue and for catching this case! I'll have a fix asap 👍
Sorry, something went wrong.
Fixed in #44 and published in v1.0.1
Thx
felangel
No branches or pull requests
code:
v1.0.0:
code:
console:
1061099485
1061099485
v0.6.1:
code:
console:
343974154
350953922
Well, I am understand you want to find a
good
hash function, but I think last one was better =) ThxThe text was updated successfully, but these errors were encountered: