Method: Fiddle::Closure::BlockCaller#call

Defined in:
lib/fiddle/closure.rb

#call(*args) ⇒ Object

Calls the constructed BlockCaller, with args

For an example see Fiddle::Closure::BlockCaller.new

[View source]

43
44
45
# File 'lib/fiddle/closure.rb', line 43

def call *args
  @block.call(*args)
end