Logo

Programming-Idioms

  • PHP
  • 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.

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.
var m = a.ToDictionary(e => e.id, e => e);

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