Logo

Programming-Idioms

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

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.

Foo = Struct.new(:x, :y)
m = {Foo.new(42, 5) => "Hello"}

To be a possible map key, the object has to respond to a hash method. By default it does.
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