Logo

Programming-Idioms

  • Perl

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).

use strict;
my %m;
my $p = Point->new(x => 42, y => 5);

$m{$p} = 'Hello';

Assuming class point was predefined, we instantiate a new Point object $p and then using hash (a.k.a. map) %m we use $p as a key and assign the value 'Hello'. Perl will hash the object reference.
m[new Point(x: 42, y: 5)] = "Hello";

New implementation...
programming-idioms.org