Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #334 Combine 2 maps

Create the new map c containing all of the (key, value) entries of the two maps a and b.

Explain what happens for keys existing in both a and b.

c := make(M, len(a)+len(b))
for k, v := range a {
	c[k] = v
}
for k, v := range b {
	c[k] = v
}

M is the map type of a and b

For any common key, the value from b overwrites the value from a.
final c = {...a, ...b};

Spread and flatten the entries of maps a and b to construct a new copy as c. Duplicate keys will favor b over a.

New implementation...
< >
programming-idioms.org