1 package frost.collections
2
3 ====================================================================================================
4 The standard "Map" abstract data type, which stores key/value pairs such that no key appears more
5 than once in the collection.
6 ====================================================================================================
7 interface Map<K, V> : MapView<K, V>, MapWriter<K, V> {
8 }