Logo

Programming-Idioms

  • Java
  • Pascal

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.

var m = a.ToDictionary(e => e.id, e => 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);
fgl
type
  TList = specialize TFPGList<TData>;
  TMap = specialize TFPGMap<TKey, TData>;

var
  a: TList;
  m: TMap;
  idx: integer;

begin
  ....
  m := TMap.Create;
  for idx := 0 to a.count-1 do
  begin
    m.add(a.items[idx].e, a.items[idx]);
  end;
  ....
  m.Free;
  ....

The type TData must itself define a class operator for testing the equality of TData variables.
final m = {
  for (final e in a) e.id: e,
};

Use a list literal with a for loop to produce the map elements.

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