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
Hi, the iterator methods of HashMap should be callable with a const object. As far as I can tell, it would suffice to add const keyword to the signature.
The text was updated successfully, but these errors were encountered:
afaics simply adding const doesn't work, I figure it is because of refcounted :
// Buckets form contigous array. We keep this array refcounted, so that
// we can store reference to it from byPair, byKey, ... even if hashtable itself cleared or
// destroyed.
but const versions would be appreciated nonetheless
Hi, the iterator methods of
HashMap
should be callable with a const object. As far as I can tell, it would suffice to addconst
keyword to the signature.The text was updated successfully, but these errors were encountered: