Class: Integer
Overview
Integer extensions
Instance Method Summary collapse
-
#maps ⇒ Object
Syntactic sugar to yield n times to a block.
Instance Method Details
#maps ⇒ Object
Syntactic sugar to yield n times to a block.
Comparison to Integer#times: Integer#maps is similar to Integer#times except that the output from each call to the block is captured in an array element and that array is returned to the calling code.
21 22 23 |
# File 'lib/webget_ruby_ramp/integer.rb', line 21 def maps return (0...self).map{|item| yield item} end |