Method: Functor#method_missing

Defined in:
lib/core/facets/functor.rb

#method_missing(op, *args, &blk) ⇒ Object (private)

Any action against the functor is processesd by the function.



88
89
90
# File 'lib/core/facets/functor.rb', line 88

def method_missing(op, *args, &blk)
  @function.call(op, *args, &blk)
end