Module: Proc::ValueInstancePatch
- Included in:
- Proc
- Defined in:
- lib/proc/value.rb
Instance Method Summary collapse
-
#value(*args) ⇒ Object
Evaluate block.
Instance Method Details
#value(*args) ⇒ Object
Evaluate block. Arguments are given to ‘Proc#call`.
27 28 29 |
# File 'lib/proc/value.rb', line 27 def value(*args) send :call, *args end |