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?
