TFPGMap

From Free Pascal wiki
Revision as of 07:05, 14 August 2021 by Dbannon (talk | contribs) (see also)
Jump to navigationJump to search

TFpGMap is part of the Free Generics Library

Here is an example provided by forum user Remy Lebeau

   uses
     ..., fgl;
    
   var
     Dict: TFPGMap<string, integer>;
     Value: Integer;
   begin
     Dict := TFPGMap<string, integer>.Create;
     try
       Dict.Add('VarName', 99);
       ...
       Value := Dict['VarName'];
       ...
     finally
       Dict.Free;
     end;
   end;

See Also