Logo

Programming-Idioms

  • Python
  • Go

Idiom #354 Increment map entry

Set the value for the key k in the map m to 1 if the entry doesn't exist yet in m, or increment the entry value if it already exists.

m[k]++

This works even if k is not yet present in m.

However, m must not be nil
m.update(k=m.get('k', 0) + 1)
m.merge(k, 1, Integer::sum);

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