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
Dictionaries are used all over the place in code, so it's be nice to have some sort of hashmap<K, V> primitive that people can use.
Under the hood, the most efficient way to transfer it would be as a tuple<list<K>, list<V>> that gets turned back into a HashMap before being given to the user.
The text was updated successfully, but these errors were encountered:
Dictionaries are used all over the place in code, so it's be nice to have some sort of
hashmap<K, V>
primitive that people can use.Under the hood, the most efficient way to transfer it would be as a
tuple<list<K>, list<V>>
that gets turned back into a HashMap before being given to the user.The text was updated successfully, but these errors were encountered: