Logo

Programming-Idioms

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

Idiom #329 Read value in a map

Assign to v the value stored in the map m for the key k.

Explain what happens if there is no entry for k in m.

v := m[k]

If m doesn't have the key k, then v is set to the zero value of m's values type.
v, ok := m[k]

ok is set to true if m has an entry for the key k, false otherwise.
var v = m[k];

If no entry, throw an exception; use TryGetValue or GetValueOrDefault instead.

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