Stupid question from a Ruby newb

W

Will

Hi folks, I know that this is a really simple question, and there must
be many ways to do it in Ruby... but what I'm looking for is an
elegant way to take a collection of objects and create a hash mapping
one attribute of the object as the key and the other as the value. So
far what I am doing is this:

objects = some_method_to_return_collect( method_params )
myHash = Hash.new

@objects.each do |object|
myHash[ object.key ] = object.value
end

I played around with doing something like:

@myHash = objects.map do |object| [ object.key => object.value ] end

But that returns an array of single-value hashes, which is not exactly
what I am trying to do.

I know this is a stupid question, and probably pointless because I do
know ways to do it, but I would really like the know the Ruby Way to do
this. Ruby seems so given to elegant code that my code above really
bugs me for some reason.

Thanks all!

-Will
 
D

David Vallner

Will said:
Hi folks, I know that this is a really simple question, and there must
be many ways to do it in Ruby... but what I'm looking for is an
elegant way to take a collection of objects and create a hash mapping
one attribute of the object as the key and the other as the value. So
far what I am doing is this:

objects = some_method_to_return_collect( method_params )
myHash = Hash.new

@objects.each do |object|
myHash[ object.key ] = object.value
end

I played around with doing something like:

@myHash = objects.map do |object| [ object.key => object.value ] end

But that returns an array of single-value hashes, which is not exactly
what I am trying to do.

I know this is a stupid question, and probably pointless because I do
know ways to do it, but I would really like the know the Ruby Way to do
this. Ruby seems so given to elegant code that my code above really
bugs me for some reason.

Thanks all!

-Will
There are no stupid questions, only stupid people.

The solution you first wrote where you're iterating over the array is as
good as any, i would probably use that.

If you like Ever So Cool one-liners, this one might also work:

myHash = objects.inject({}){|hash, item| hash[item.key] =
item.value; hash}

It does pretty much completely the same, except were this Smalltalk, the
block wouldn't be a closure and therefore a horse's butthair more
memory-efficient solution.

David Vallner
 
D

David Vallner

Steve said:
On Tuesday 10 January 2006 11:42 pm, David Vallner wrote:
[clip]

There are no stupid questions, only stupid people.

I think what David means here is that failure to ask the question is
stupid :)

SteveT

Steve Litt
http://www.troubleshooters.com
(e-mail address removed)
Oh, not quite, that was just a general random piece of Zen. (read: brain
fart).
But indeed -part- of the meaning was that you can't indeed ask stupid
questions. For given values of 'question' ;P

Green eggs and spam.

David Vallner
Shouldn't turn Thunderbird on when insomniac...
 
G

gwtmp01

If you like Ever So Cool one-liners, this one might also work:

myHash = objects.inject({}){|hash, item| hash[item.key] =
item.value; hash}

It does pretty much completely the same, except were this
Smalltalk, the block wouldn't be a closure and therefore a horse's
butthair more memory-efficient solution.

Is this because the Smalltalk compiler will notice that there are no
references to variables outside the block and Ruby's current
implementation
will not notice the same thing?


Gary Wright
 
A

ara.t.howard

Hi folks, I know that this is a really simple question, and there must
be many ways to do it in Ruby... but what I'm looking for is an
elegant way to take a collection of objects and create a hash mapping
one attribute of the object as the key and the other as the value. So
far what I am doing is this:

objects = some_method_to_return_collect( method_params )
myHash = Hash.new

@objects.each do |object|
myHash[ object.key ] = object.value
end

I played around with doing something like:

@myHash = objects.map do |object| [ object.key => object.value ] end

But that returns an array of single-value hashes, which is not exactly
what I am trying to do.

I know this is a stupid question, and probably pointless because I do
know ways to do it, but I would really like the know the Ruby Way to do
this. Ruby seems so given to elegant code that my code above really
bugs me for some reason.

Thanks all!

h = objects.inject({}){|h,o| h.update o.key => o.value}

-a
 
D

David Vallner

h = objects.inject({}){|h,o| h.update o.key => o.value}

-a

Oooh, Spiffy (tm) ;P Wish I thought of that. Possibly less efficient
though generating a lot of single-pair hashes that are instant garbage,
although it's all fun and games until someone runs a benchmark.

David Vallner
 
R

Ross Bamford

Hi folks, I know that this is a really simple question, and there must
be many ways to do it in Ruby... but what I'm looking for is an
elegant way to take a collection of objects and create a hash mapping
one attribute of the object as the key and the other as the value. So
far what I am doing is this:

objects = some_method_to_return_collect( method_params )
myHash = Hash.new

@objects.each do |object|
myHash[ object.key ] = object.value
end

I played around with doing something like:

@myHash = objects.map do |object| [ object.key => object.value ] end

But that returns an array of single-value hashes, which is not exactly
what I am trying to do.

I know this is a stupid question, and probably pointless because I do
know ways to do it, but I would really like the know the Ruby Way to do
this. Ruby seems so given to elegant code that my code above really
bugs me for some reason.

Stupid questions (i.e. the asking of) are my speciality these days ( :( )
and this doesn't seem to be a particularly dumb one to me :) You are
right though about a more elegant way to do it:

h = Hash['blue', 34, 'red', 31, 'green', 32] # => {"green"=>32,
"blue"=>34, "red"=>31}

a = [1, 'one', 2, 'two', 3, 'three'] # => [1, "one", 2, "two", 3,
"three"]
h = Hash[*a] # => {1=>"one", 2=>"two", 3=>"three"}

(Notice the * on the second form)

Cheers,
 
R

Ross Bamford

Hi folks, I know that this is a really simple question, and there must
be many ways to do it in Ruby... but what I'm looking for is an
elegant way to take a collection of objects and create a hash mapping
one attribute of the object as the key and the other as the value. So
far what I am doing is this:

objects = some_method_to_return_collect( method_params )
myHash = Hash.new

@objects.each do |object|
myHash[ object.key ] = object.value
end

I played around with doing something like:

@myHash = objects.map do |object| [ object.key => object.value ] end

But that returns an array of single-value hashes, which is not exactly
what I am trying to do.

I know this is a stupid question, and probably pointless because I do
know ways to do it, but I would really like the know the Ruby Way to do
this. Ruby seems so given to elegant code that my code above really
bugs me for some reason.

Stupid questions (i.e. the asking of) are my speciality these days
( :( ) and this doesn't seem to be a particularly dumb one to me :) You
are right though about a more elegant way to do it:

Stupid answers, too. Seems I misread the question, sorry about that :(

(Sorry everyone for all this noise lately, I promise I'm going to start
enforcing a fifteen minute gap between writing and posting to try and make
sure I'm not just spouting crap again).
 
D

David Vallner

Is this because the Smalltalk compiler will notice that there are no
references to variables outside the block and Ruby's current
implementation
will not notice the same thing?


Gary Wright
Quite so, Smalltalk compilers could optimize blocks that obviously
didn't close upon the lexical environment by dropping part or all of the
lexical binding. There was a thread about procs being a potential memory
leak on the list that discussed this in Ruby, you might want to look at
the ML archives.

One of the arguments raised in the thread was that this optimization
isn't really in Ruby because of eval. When blocks are called, they have
to be (usually) executed in the lexical scope in which they were
defined. The same is true of eval. Unfortunately, it's harder to
determine what in the surrounding scope is referenced in an eval call
than in a block, since the code is parsed at runtime; also you can't
really determine when eval is called because of aliasing. Therefore
optimizing the blocks would very likely break the use of eval in them.

I don't know what conclusion the original discussion came to, I'd
personally like to see eval mildly deprecated in favor of the many
other, more explicit, and cleaner reflection capacities like #class_eval
and #define_method for code generation, discouraged for use in the
standard library, and optimizing the blocks as optional interpreter / VM.

David Vallner
 
R

Ryan Leavengood

@myHash =3D objects.map do |object| [ object.key =3D> object.value ] end

You were on the right track with this one:

@myHash =3D Hash[*objects.map{|o| [o.key, o.value]}.flatten]

So we map the objects into array pairs of the key and value, flatten
the resulting array, and then use the "splat" operator (*) to turn
those into parameters to the Hash::[] method.

Ryan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,276
Latest member
Sawatmakal

Latest Threads

Top