Logo

Programming-Idioms

  • VB
  • Erlang
  • Python

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]

The KeyError exception is raised if the key k doesn't exist in the dict m.
v = m.get(k, "default value")

The second argument is returned if there is no key k in the dict m.
v = m.get(k)

This returns None if there is no key k in the dict m.
var v = m[k];

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

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