Hashes of Hashes Idiom in Ruby? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:28:20Z http://stackoverflow.com/feeds/question/170223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/170223/hashes-of-hashes-idiom-in-ruby 18 Hashes of Hashes Idiom in Ruby? David 2008-10-04T12:10:07Z 2009-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#170240 31 Answer by Konrad Rudolph for Hashes of Hashes Idiom in Ruby? Konrad Rudolph 2008-10-04T12:16:03Z 2008-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(&amp;(p=lambda{|h,k| h[k] = Hash.new(&amp;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#739520 0 Answer by tadman for Hashes of Hashes Idiom in Ruby? tadman 2009-04-11T04:24:11Z 2009-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>