Please see a Ruby Book and/or Tutorial, this "idiomatic block" is a very core part of everyday Ruby
The idiomatic way is to use a block:
def x(z)
yield z
end
x(3) {|y| y*y} # => 9
Or perhaps converted to a proc: (Only do this to save the block for later or in other special cases; here I show that the "block", converted to a Proc implicitly with &block, is just another value):
def x(z, &block)
callback = block
callback.call(z)
end
# look familiar?
x(4) {|y| y * y} # => 16
However, a lambda can be use just as easily (but this is not idiomatic):
def x(z,fn)
fn.call(z)
end
# just use a lambda (closure)
x(5, lambda {|y| y * y}) # => 25
While the above approaches can all wrap "calling a method" as they create closures, bound methods can also be treated as first-class callable objects:
class A
def b(z)
z*z
end
end
callable = A.new.method(:b)
callable.call(6) # => 36
# and since it's just a value...
def x(z,fn)
fn.call(z)
end
x(7, callable) # => 49
In addition, sometimes it's useful to use the #send method (in particular if a method is known by name, here it saves an intermediate wrapping bound-method; ruby is a message-passing based OO system):
# Using A from previous
def x(z, a):
a.__send__(:b, z)
end
x(8, A.new) # => 64