Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

Idiom #282 Use a custom type as map key

Declare a type Foo, and create a new map with Foo as key type.

Mention the conditions on Foo required to make it a possible map key type.

package Foo {    
    sub new { 
        my $class = shift; 
        return bless { @_ }, $class 
    }    
};
 
my $p = Foo->new(x => 5);

my %map;

$map{$p} = 'some data';

Using perl classic OO, define a class Foo, then object $p, and insert $p in hash %map with value 'some data'. Perl will stringify $p to Foo=HASH(0x######), which is the address of the object reference. Add a stringify method and overload to provide a different key for hashing.
use Object::Pad;
class Foo {
    has $x :param = 0;
}
 
my $p = Foo->new(x => 5);

my %map;

$map{$p} = 'some data';

This uses Object::Pad to define a "type", but could just as easily use Moose or Moo, or an old-fashioned blessed hashref. An object is instantiated and inserted into %map. Perl calls the object's stringify method to form the key so it better return a unique value for every object! See also Tie::RefHash.
class Foo{};
Map<Foo, int> m = {};

note that typedef can also be used to declare a type, ex: typedef Foo = List<int>;

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