List of functions and data types in Dict
Void add(TinyDict<a, b> dict, a key, b val)
Arguments
dict: A tiny dictionary
key: The key
value: The value
Usage
Add an entry key = value to the dictionary. If an entry with the same key already exists it will be replaced.
Related