[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

hash of arrays - appending to one of the arrays

Adam Akhtar

3/25/2008 3:45:00 AM

Hi Ive done a search on this and there have been quite a few posts which
have incresed my knowlege somewhat but still have a few questions.

Im creating a hash of arrays. The keys and values are added within a
loop. For each key there may be multiple values hence the need for an
array as a value. Values for a key are found over interations of a loop.
I therefore have to append a new found value to the existing values in
an array.

I tried doing this

something.each do |blah|
if (test something)
hash[key] = hash[key] + value
end
end

but the compliler complains about there being no method for nil class.

I read the basic way to do this would be

hash[key] = [] #create blank array
hash[key] = hash[key] + value

but as im in a loop that would require me to do a check to see if the
key exists or not. If im processing lots of informatino that would slow
me down a bit.

IS there a slicker way of doing this?
--
Posted via http://www.ruby-....

5 Answers

David A. Black

3/25/2008 3:56:00 AM

0

Hi --

On Tue, 25 Mar 2008, Adam Akhtar wrote:

> Hi Ive done a search on this and there have been quite a few posts which
> have incresed my knowlege somewhat but still have a few questions.
>
> Im creating a hash of arrays. The keys and values are added within a
> loop. For each key there may be multiple values hence the need for an
> array as a value. Values for a key are found over interations of a loop.
> I therefore have to append a new found value to the existing values in
> an array.
>
> I tried doing this
>
> something.each do |blah|
> if (test something)
> hash[key] = hash[key] + value
> end
> end
>
> but the compliler complains about there being no method for nil class.
>
> I read the basic way to do this would be
>
> hash[key] = [] #create blank array
> hash[key] = hash[key] + value
>
> but as im in a loop that would require me to do a check to see if the
> key exists or not. If im processing lots of informatino that would slow
> me down a bit.
>
> IS there a slicker way of doing this?

The most common idiom is:

(hash[key] ||= []) << value

You can also make a hash that has a default behavior, for non-existent
keys, of putting an array at that key:

irb(main):004:0> hash = Hash.new {|h,k| h[k] = [] }
=> {}
irb(main):005:0> hash[1] << 2
=> [2]
irb(main):006:0> hash
=> {1=>[2]}


David

--
Upcoming Rails training from David A. Black and Ruby Power and Light:
ADVANCING WITH RAILS April 14-17 New York City
INTRO TO RAILS June 9-12 Berlin
ADVANCING WITH RAILS June 16-19 Berlin
CORE RAILS June 24-27 London (Skills Matter)
See http://www.r... for more info!

Adam Akhtar

3/25/2008 12:42:00 PM

0


> The most common idiom is:
>
> (hash[key] ||= []) << value
>

Thanks for the reply. Can I ask what these || mean..in this case do they
mean OR???

does anyone have any good links on using the use of arrays with hashes
in this manner?

--
Posted via http://www.ruby-....

Jesús Gabriel y Galán

3/25/2008 12:51:00 PM

0

On Tue, Mar 25, 2008 at 1:41 PM, Adam Akhtar <adamtemporary@gmail.com> wrote:
>
> > The most common idiom is:
> >
> > (hash[key] ||= []) << value
> >
>
> Thanks for the reply. Can I ask what these || mean..in this case do they
> mean OR???

a ||= b means a = a || b

and it's a common idiom to assign a value only when the lhs is nil (or false).
A hash by default will return nil for non-existing keys so:

hash[key] ||= [] could be written as hash[key] = hash[key] || []

and means: if the key is not present in the hash, create that entry in
the hash with an empty array as the value.

> does anyone have any good links on using the use of arrays with hashes
> in this manner?

I don't have a link, but if you are doing that in a lot of places, remember you
can change the default behaviour of a hash to do the above for you:

hash = Hash.new {|h,k| h[k] = []}

from there on you can say just:

hash[key] << value

because the default value for an inexistent key will trigger the
creation of a new array assigned to that key.

Jesus.

David A. Black

3/25/2008 2:39:00 PM

0

Hi --

On Tue, 25 Mar 2008, Adam Akhtar wrote:

>
>> The most common idiom is:
>>
>> (hash[key] ||= []) << value
>>
>
> Thanks for the reply. Can I ask what these || mean..in this case do they
> mean OR???

Yes. This:

a ||= b

is the same as:

a or a = b

I used to describe it like this:

a = a || b

but there are some edge cases where that doesn't apply (having to do
with hash defaults, actually, but you don't need to worry about it in
this case). Matz clarified it with the "or" version at RubyConf last
year.

> does anyone have any good links on using the use of arrays with hashes
> in this manner?

I don't know -- I just sort of use them :-)


David

--
Rails training from David A. Black and Ruby Power and Light:
ADVANCING WITH RAILS April 14-17 New York City
INTRO TO RAILS June 9-12 Berlin
ADVANCING WITH RAILS June 16-19 Berlin
See http://www.r... for details and updates!

Adam Akhtar

3/25/2008 11:53:00 PM

0

Many thanks for that. Thats helped my code a lot. Cheers


--
Posted via http://www.ruby-....