summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-object-ext/mrblib/object.rb
diff options
context:
space:
mode:
authorksss <[email protected]>2014-03-27 19:35:15 +0900
committerksss <[email protected]>2014-03-27 19:36:07 +0900
commitd3ea800cba86fad042a5f21332143aeddff5c16f (patch)
tree1a29f7fe143900ce5afdf2e5d1aa9dcb69600bf2 /mrbgems/mruby-object-ext/mrblib/object.rb
parent458c18cd4e4a1c0aaade7375b38784c3ef61439b (diff)
downloadmruby-d3ea800cba86fad042a5f21332143aeddff5c16f.tar.gz
mruby-d3ea800cba86fad042a5f21332143aeddff5c16f.zip
Implement Object#tap
Diffstat (limited to 'mrbgems/mruby-object-ext/mrblib/object.rb')
-rw-r--r--mrbgems/mruby-object-ext/mrblib/object.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/mrbgems/mruby-object-ext/mrblib/object.rb b/mrbgems/mruby-object-ext/mrblib/object.rb
new file mode 100644
index 000000000..581156cb0
--- /dev/null
+++ b/mrbgems/mruby-object-ext/mrblib/object.rb
@@ -0,0 +1,19 @@
+class Object
+ ##
+ # call-seq:
+ # obj.tap{|x|...} -> obj
+ #
+ # Yields <code>x</code> to the block, and then returns <code>x</code>.
+ # The primary purpose of this method is to "tap into" a method chain,
+ # in order to perform operations on intermediate results within the chain.
+ #
+ # (1..10) .tap {|x| puts "original: #{x.inspect}"}
+ # .to_a .tap {|x| puts "array: #{x.inspect}"}
+ # .select {|x| x%2==0} .tap {|x| puts "evens: #{x.inspect}"}
+ # .map { |x| x*x } .tap {|x| puts "squares: #{x.inspect}"}
+ #
+ def tap
+ yield self
+ self
+ end
+end