# Functions
Filter returns a new map containing only the elements in the input map m for which the specified function f is true.
Invert returns a new map where keys and values are swapped.
Map returns a new map that contains each of the elements of the input map m mutated by the specified function.
Reduce applies the reducing function f to each element of the input map m and returns the value of the last call to f.