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
currently, the operator invalidates the cache and returns a mutable reference to the held item - this has the unfortunate consequence that the cache gets invalidated even on read-only uses when the HashList itself for unrelated reasons is mutable, due to how nim prefers var overloads over non-var overloads of the same function.
The text was updated successfully, but these errors were encountered:
currently, the operator invalidates the cache and returns a mutable reference to the held item - this has the unfortunate consequence that the cache gets invalidated even on read-only uses when the
HashList
itself for unrelated reasons is mutable, due to how nim prefersvar
overloads over non-var
overloads of the same function.The text was updated successfully, but these errors were encountered: