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.
foreachmy $e (@a) {
$m{$e->id) = $e;
}
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"
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;
....