ForEach¶
func ForEach[K comparable, V any](mapInstance map[K]V, function func(key K, value V))
ForEach given a map with keys K and values V, executes the passed in function for each key-value pair.
func ForEach[K comparable, V any](mapInstance map[K]V, function func(key K, value V))
ForEach given a map with keys K and values V, executes the passed in function for each key-value pair.