show/hide this revision's text 2 tightened the question text.

I frequently want to create

Creating hashes of hashes in Ruby so that I can do allows for convenient two (or more) dimensional lookupsmore easily. However, upon when inserting I don't one must always want to first check if the first index already exists in the hash. For example:

h = Hash.new
h['x'] = Hash.new if not h.key?('x')
h['x']['y'] = value_to_insert

I

It would rather just be able preferable to do the following and have the creation of where the new Hash be taken care of is created automatically:

h = Hash.new
h['x']['y'] = value_to_insert

Similarly, when I'm looking up a value , and where the first index doesn't already exist, I it would like nil to be preferable if nil is returned automatically rather than receiving an undefined method for '[]' error.

looked_up_value = h['w']['z']

I realize that I

One could create my own a Hash wrapper class that has this behavior, but I am wondering if is there an existing a Ruby idiom for accomplishing this already exists.task?

show/hide this revision's text 1

Hashes of Hashes Idiom in Ruby?

I frequently want to create hashes of hashes in Ruby so that I can do two dimensional lookups more easily. However, upon inserting I don't always want to first check if the first index already exists in the hash. For example:

h = Hash.new
h['x'] = Hash.new if not h.key?('x')
h['x']['y'] = value_to_insert

I would rather just be able to do the following and have the creation of the new Hash be taken care of automatically:

h = Hash.new
h['x']['y'] = value_to_insert

Similarly, when I'm looking up a value, and the first index doesn't already exist, I would like nil to be returned automatically rather than receiving an undefined method for '[]' error.

looked_up_value = h['w']['z']

I realize that I could create my own Hash wrapper class that has this behavior, but I am wondering if a Ruby idiom for this already exists.