Data Structures :: Maps
- ds_map_clone(map)
- Clones a map simply to a new copy and returns the created map.
- ds_map_deep_clone(map)
- Clones a map deeply to a new copy, cloning any nested maps and lists, and returning the created root map.
- ds_map_default_value(map, key, val)
- Returns the value of a key from a given map, inserting a default value into the map if the key does not yet exist.
- ds_map_load(file, delim)
- Loads the contents of a file into a new map data structure, returning its id.
- ds_map_mirror(map)
- Exchanges map keys with map values.
- ds_map_save(map, file, delim)
- Saves the contents of a given map data structure into a file.