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
This change is needed because right now only integral types can be directly used as a key in Tervel's hash map implementation due to restrictions put on the signature of the hash() method in the current functor definition.
This change would require keys' internal type be size_t which should be trivial to change. This approach also allows users of the hash map more flexibility with regard to the types of keys used in addition to the hashing algorithm they can use.
The text was updated successfully, but these errors were encountered:
This change is needed because right now only integral types can be directly used as a key in Tervel's hash map implementation due to restrictions put on the signature of the hash() method in the current functor definition.
This change would require keys' internal type be size_t which should be trivial to change. This approach also allows users of the hash map more flexibility with regard to the types of keys used in addition to the hashing algorithm they can use.
The text was updated successfully, but these errors were encountered: