Logo

Programming-Idioms

  • JS
  • Pascal

Idiom #281 Use a Point as a map key

You have a Point with integer coordinates x and y. Create a map m with key type Point (or equivalent) and value type string. Insert "Hello" at position (42, 5).

fgl
type
  TKey = record
    x, y: Integer;
    class operator =(L,R: TKey): Boolean;
    class operator <(L,R: TKey): Boolean;
    class operator >(L,R: TKey): Boolean;
  end;
  TMap = specialize TFPGMap<TKey, String>;

var
  m: TMap;
  Key: TKey;
begin
  Key.x := 42;
  Key.y := 5;
  m := TMap.Create;
  m.Add(Key, 'Hello World');
  m.Free;
end.

Notice that you have to implement the TKey class operators (trvial), but the extra 21 lines of code exceed the limit of characters allowed in the code example...
m[new Point(x: 42, y: 5)] = "Hello";

New implementation...
programming-idioms.org