List of functions and data types in Dict
Maybe<b> lookup(Dict<a, b> dict, a key)
Arguments
dict: A dictionary
key: The key to lookup
Usage
Look up a value in a dictionary. Returns nothing if the key does not exist, or just(x) if it maps to x.
Related