Hashes of Hashes Idiom in Ruby? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T09:28:20Zhttp://stackoverflow.com/feeds/question/170223http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170223/hashes-of-hashes-idiom-in-ruby18Hashes of Hashes Idiom in Ruby?David2008-10-04T12:10:07Z2009-04-11T04:32:52Z
<p>Creating hashes of hashes in Ruby allows for convenient two (or more) dimensional lookups. However, when inserting one must always check if the first index already exists in the hash. For example:</p>
<pre><code>h = Hash.new
h['x'] = Hash.new if not h.key?('x')
h['x']['y'] = value_to_insert
</code></pre>
<p>It would be preferable to do the following where the new Hash is created automatically:</p>
<pre><code>h = Hash.new
h['x']['y'] = value_to_insert
</code></pre>
<p>Similarly, when looking up a value where the first index doesn't already exist, it would be preferable if nil is returned rather than receiving an undefined method for '[]' error. </p>
<pre><code>looked_up_value = h['w']['z']
</code></pre>
<p>One could create a Hash wrapper class that has this behavior, but is there an existing a Ruby idiom for accomplishing this task?</p>
http://stackoverflow.com/questions/170223/hashes-of-hashes-idiom-in-ruby/170240#17024031Answer by Konrad Rudolph for Hashes of Hashes Idiom in Ruby?Konrad Rudolph2008-10-04T12:16:03Z2008-10-04T12:25:00Z<p>You can pass the <a href="http://www.ruby-doc.org/core/classes/Hash.html#M002868" rel="nofollow"><code>Hash.new</code></a> function a block that is executed to yield a default value in case the queried value doesn't exist yet:</p>
<pre><code>h = Hash.new { |h, k| h[k] = Hash.new }
</code></pre>
<p>Of course, this can be done recursively.</p>
<p>/EDIT: Wow, there's <a href="http://blog.inquirylabs.com/2006/09/20/ruby-hashes-of-arbitrary-depth/" rel="nofollow">an article</a> answering this very question.</p>
<p>For the sake of completeness, here's the solution from the article for arbitrary depth hashes:</p>
<pre><code>hash = Hash.new(&(p=lambda{|h,k| h[k] = Hash.new(&p)}))
</code></pre>
<p>Credits go to Kent from <a href="http://www.datanoise.com/" rel="nofollow">Data Noise</a>.</p>
http://stackoverflow.com/questions/170223/hashes-of-hashes-idiom-in-ruby/739520#7395200Answer by tadman for Hashes of Hashes Idiom in Ruby?tadman2009-04-11T04:24:11Z2009-04-11T04:32:52Z<p>Autovivification, as it's called, is both a blessing and a curse. The trouble can be that if you "look" at a value before it's defined, you're stuck with this empty hash in the slot and you would need to prune it off later.</p>
<p>If you don't mind a bit of anarchy, you can always just jam in or-equals style declarations which will allow you to construct the expected structure as you query it:</p>
<pre><code>((h ||= { })['w'] ||= { })['z']
</code></pre>