setting ruby hash .default to a list - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:09:26Z http://stackoverflow.com/feeds/question/190740 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list 2 setting ruby hash .default to a list matpalm 2008-10-10T10:28:53Z 2008-10-11T16:39:26Z <p>i thought i understood what the default method does to a hash... </p> <p>give a default value for a key if it doesn't exist</p> <pre><code>irb(main):001:0&gt; a = {} =&gt; {} irb(main):002:0&gt; a.default = 4 =&gt; 4 irb(main):003:0&gt; a[8] =&gt; 4 irb(main):004:0&gt; a[9] += 1 =&gt; 5 irb(main):005:0&gt; a =&gt; {9=&gt;5} </code></pre> <p>all good.</p> <p>but if i set the default to be a empty list, or empty hash, i dont understand it's behaviour at <strong>all</strong>....</p> <pre><code>irb(main):001:0&gt; a = {} =&gt; {} irb(main):002:0&gt; a.default = [] =&gt; [] irb(main):003:0&gt; a[8] &lt;&lt; 9 =&gt; [9] # great! irb(main):004:0&gt; a =&gt; {} # ?! would have expected {8=&gt;[9]} irb(main):005:0&gt; a[8] =&gt; [8] # awesome! irb(main):006:0&gt; a[9] =&gt; [9] # unawesome! shouldn't this be [] ?? </code></pre> <p>i was hoping / expecting the same behaviour as if i had used the ||= operator...</p> <pre><code>irb(main):001:0&gt; a = {} =&gt; {} irb(main):002:0&gt; a[8] ||= [] =&gt; [] irb(main):003:0&gt; a[8] &lt;&lt; 9 =&gt; [9] irb(main):004:0&gt; a =&gt; {8=&gt;[9]} irb(main):005:0&gt; a[9] =&gt; nil </code></pre> <p>can anyone explain what is going on ???</p> http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list/190801#190801 5 Answer by Aaron Hinni for setting ruby hash .default to a list Aaron Hinni 2008-10-10T10:48:54Z 2008-10-10T10:48:54Z <p><code>Hash.default</code> is used to set the default value <strong>returned</strong> when you query a key that doesn't exist. An entry in the collection is not created for you, just because queried it.</p> <p>Also, the value you set <code>default</code> to is an instance of an object (an Array in your case), so when this is returned, it can be manipulated.</p> <pre><code>a = {} a.default = [] # set default to a new empty Array a[8] &lt;&lt; 9 # a[8] doesn't exist, so the Array instance is returned, and 9 appended to it a.default # =&gt; [9] a[9] # a[9] doesn't exist, so default is returned </code></pre> http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list/190832#190832 0 Answer by Simon Howard for setting ruby hash .default to a list Simon Howard 2008-10-10T11:00:11Z 2008-10-10T11:00:11Z <pre><code>irb(main):002:0&gt; a.default = [] =&gt; [] irb(main):003:0&gt; a[8] &lt;&lt; 9 =&gt; [9] # great! </code></pre> <p>With this statement, you have modified the default; you have not created a new array and added "9". At this point, it's identical to if you had done this instead:</p> <pre><code>irb(main):002:0&gt; a.default = [9] =&gt; [9] </code></pre> <p>Hence it's no surprise that you now get this:</p> <pre><code>irb(main):006:0&gt; a[9] =&gt; [9] # unawesome! shouldn't this be [] ?? </code></pre> <p>Furthermore, the '&lt;&lt;' added the '9' to the array; it did not add it to the hash, which explains this:</p> <pre><code>irb(main):004:0&gt; a =&gt; {} # ?! would have expected {8=&gt;[9]} </code></pre> <p>Instead of using .default, what you probably want to do in your program is something like this:</p> <pre><code># Time to add a new entry to the hash table; this might be # the first entry for this key.. myhash[key] ||= [] myhash[key] &lt;&lt; value </code></pre> http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list/192478#192478 1 Answer by glenn mcdonald for setting ruby hash .default to a list glenn mcdonald 2008-10-10T18:02:35Z 2008-10-10T18:02:35Z <p>This is a very useful idiom:</p> <pre><code>(myhash[key] ||= []) &lt;&lt; value </code></pre> <p>It can even be nested:</p> <pre><code>((myhash[key1] ||= {})[key2] ||= []) &lt;&lt; value </code></pre> <p>The other way is to do:</p> <pre><code>myhash = Hash.new {|hash,key| hash[key] = []} </code></pre> <p>But this has the significant side-effect that <strong>asking</strong> about a key will create it, which renders has_key? fairly useless, so I avoid this method.</p> http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list/192622#192622 -1 Answer by Daniel Beardsley for setting ruby hash .default to a list Daniel Beardsley 2008-10-10T18:48:24Z 2008-10-10T18:48:24Z <p>I'm not sure if this is what you want, but you can do this to always return an empty array when a missing hash key is queried.</p> <pre><code>h = Hash.new { [] } h[:missing] =&gt; [] #But, you should never modify the empty array because it isn't stored anywhere #A new, empty array is returned every time h[:missing] &lt;&lt; 'entry' h[:missing] =&gt; [] </code></pre> http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list/194297#194297 3 Answer by Turp for setting ruby hash .default to a list Turp 2008-10-11T16:39:26Z 2008-10-11T16:39:26Z <p>I think this is the behavior you are looking for. This will automatically initialize any new keys in the Hash to an array:</p> <pre><code>irb(main):001:0&gt; h = Hash.new{|h, k| h[k] = []} =&gt; {} irb(main):002:0&gt; h[1] &lt;&lt; "ABC" =&gt; ["ABC"] irb(main):003:0&gt; h[3] =&gt; [] irb(main):004:0&gt; h =&gt; {1=&gt;["ABC"], 3=&gt;[]} </code></pre>