Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/ext/core.rb
Instance Method Summary collapse
-
#tap {|_self| ... } ⇒ Object
ruby 1.8.6 backport of tap.
Instance Method Details
#tap {|_self| ... } ⇒ Object
ruby 1.8.6 backport of tap
3 4 5 6 |
# File 'lib/ext/core.rb', line 3 def tap yield(self) self end |