[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Bloc param parens |memo, (a, b)|

Tj Holowaychuk

1/16/2009 6:02:00 PM

In Ruby < 1.9 what does this really do? For example I wrote

class String
def tokenize! hash
hash.inject(self) { |s, (k, v)| s.gsub! /:#{k}/, v }
end
end

Which has a usage of:
'Welcome :name, enjoy your :object'.tokenize!({ :name => 'TJ', :object
=> 'cookie' })

anyways, the inject did not work as desired until I put parens around
the last two parameters, yet I do not entirely understand whats going
here! does this just cause the distribution of the variables to change?
--
Posted via http://www.ruby-....

2 Answers

Gary Wright

1/16/2009 6:28:00 PM

0


On Jan 16, 2009, at 1:01 PM, Tj Holowaychuk wrote:

> In Ruby < 1.9 what does this really do? For example I wrote
>
> class String
> def tokenize! hash
> hash.inject(self) { |s, (k, v)| s.gsub! /:#{k}/, v }
> end
> end
>
> Which has a usage of:
> 'Welcome :name, enjoy your :object'.tokenize!({ :name => 'TJ', :object
> => 'cookie' })
>
> anyways, the inject did not work as desired until I put parens around
> the last two parameters, yet I do not entirely understand whats going
> here! does this just cause the distribution of the variables to
> change?

When you enumerate over a hash you get a series of arrays. Each array
has two elements: [key, value]. If your inject block only has two
arguments
defined, the second argument will be an array of two elements. When you
insert the parens the second argument is decomposed according to Ruby's
multiple assignment rules. Like this:

k,v = array[0], array[1]

Gary Wright



Tj Holowaychuk

1/16/2009 8:08:00 PM

0

Thanks for the reply! I get it now, just never really took the time to
check that stuff out

def test &block
yield 1, [2, 3]
end

test do |a, b, c|
p a
p b
p c
end

puts

test do |a, (b, c)|
p a
p b
p c
end

that demonstrated it pretty well
--
Posted via http://www.ruby-....