You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To properly create a dictionary/set etc two things are needed in .net
getHashcode method to get the hash of the object to know in which bucket it must be placed
an equals method to know which object to pick up on the bucket if the hash collides
I don't see any implementation of those in the collections, how are they handled by this library?
The text was updated successfully, but these errors were encountered:
In case you need to use comparers on a method that doesn't accept them, I will gladly accept a PR (this should be 4-5 lines change at most) or you can request it and I'll add it on my spare time.
To properly create a dictionary/set etc two things are needed in .net
getHashcode method to get the hash of the object to know in which bucket it must be placed
an equals method to know which object to pick up on the bucket if the hash collides
I don't see any implementation of those in the collections, how are they handled by this library?
The text was updated successfully, but these errors were encountered: