Dictionaries are implemented in a Dict core library.
A dictionary mapping unique keys to values. The keys can be any
comparable type. This includes Int, Float, Time, Char, String, and
tuples or lists of comparable types.
Insert, remove, and query operations all take O(log n) time.
Unlike Tu...