Logo

Programming-Idioms

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

Idiom #335 List to map

Create the map m containing all the elements e of the list a, using as key the field e.id.

m = {e.id:e for e in a}
m = dict((x.id, x) for x in a)

"... The dict() constructor can accept an iterator that returns a finite stream of (key, value) tuples"
var m = a.ToDictionary(e => e.id, e => e);

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