HashSet operations against another HashSet should allow for differing hash algorithms #31712
Labels
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-libs-api
Relevant to the library API team, which will review and decide on the PR/issue.
Operations such as
intersection
take a secondHashMap
. It's required that the secondHashMap
implement the same hashing algorithm as the first one:This means that you cannot intersect a
HashMap<u8, SipHash>
against aHashMap<u8, FnvHash>
. This seems overly restrictive./cc @bluss
The text was updated successfully, but these errors were encountered: