Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to define a block that I'll use to pass the the each method of multiple ranges. Rather than redefining the block on each range, I'd like to create a lamba, and pass the lambda as such:

count = 0
procedure = lambda {|v| map[count+=1]=v}
("A".."K").each procedure
("M".."N").each procedure
("P".."Z").each procedure

However, I get the following error:

ArgumentError: wrong number of arguments(1 for 0)
    from code.rb:23:in `each'

Any ideas what's going on here?

share|improve this question

1 Answer

up vote 14 down vote accepted

Tack an ampersand on there, that signifies that you're passing it as the special block argument of the method. Otherwise it's interpreted as a normal argument.

("A".."K").each &procedure

This mirrors they way you'd access the block argument inside the method itself:

def some_func(foo, bar, &block)
  block.call(foo, bar)
end

some_func(2, 3) {|a, b| a * b }
=> 6
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.