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.