# README
Generic Map Functions
Complements Go standard library maps
package.
# Functions
ApplyToAllKeys returns a new map containing the results of applying the function `f` to each key of the original map `m`.
ApplyToAllValues returns a new map containing the results of applying the function `f` to each value of the original map `m`.
No description provided by the author
Keys returns the keys of the map `m`.
Values returns the values of the map `m`.