# Functions
Clear removes all entries from m, leaving it empty.
Clone returns a copy of m.
Copy copies all key/value pairs in src adding them to dst.
DeleteFunc deletes any key/value pairs from m for which del returns true.
Equal reports whether two maps contain the same key/value pairs.
EqualFunc is like Equal, but compares values using eq.
Filter removes all key/value pairs from m for which f returns false.
FilterFunc is like Filter, but uses a function.
Keys returns the keys of the map m.
KVsToMap converts a slice of key-value pairs to a map.
MapToKVs converts a map to a slice of key-value pairs.
MapToStruct converts a map to a struct.
MapToTypes converts a map to a slice of types.
Merge merges the values of src into dest.
MergeFunc merges the values of src into dest using the provided merge function.
MergeMaps merges multiple maps into a single map.
MergeMapsFunc merges multiple maps into a single map using a custom merge function.
Transform remaps the keys and values of a map using a custom transformation function.
TypesToMap converts a slice of types to a map.
Values returns the values of the map m.