Logo

Programming-Idioms

  • JS
  • Java
  • 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 = dict((x.id, x) for x in a)

"... The dict() constructor can accept an iterator that returns a finite stream of (key, value) tuples"
m = {e.id:e for e in a}
let m = new Map(a.map(e => [e.id, e]))
import java.util.HashMap;
import java.util.Map;
Map<Integer, E> m = new HashMap<>();
a.forEach(e -> m.put(e.id, e));
import java.util.Map;
Map<Integer, E> m = a.stream()
    .collect(toMap(e -> e.id, e -> e));
import java.util.HashMap;
import java.util.Map;
Map<Integer, E> m = new HashMap<>();
for (E e : a) m.put(e.id, e);
var m = a.ToDictionary(e => e.id, e => e);

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