Logo

Programming-Idioms

  • Haskell
  • Dart

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.

final m = {
  for (final e in a) e.id: e,
};

Use a list literal with a for loop to produce the map elements.
var m = a.ToDictionary(e => e.id, e => e);

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