| Input | A list of pairs separated by comma. |
| Output | A map containing all the pairs. |
| Input | A map and a key. |
| Output | The value associated with the key. |
| Input | A map and a key. |
| Output | The value associated with the key. |
| Input | A map, a key, and a value. |
| Output | A new map containing the new key-value pair. |
| Input | A map. |
| Output | A list containing all the keys. |
| Input | A map. |
| Output | A list containing all the values. |
| Input | A map and a key. |
| Output | True if the key is in the map, false otherwise. |
| Input | A map. |
| Output | True if the map is empty, false otherwise. |
| Input | A map. |
| Output | True if the map is not empty, false otherwise. |
| Input | A map and a key. |
| Output | A new map with the key removed. |
| Input | A map. |
| Output | The number of key-value pairs in the map. |