Class: Integer
- Inherits:
-
Object
- Object
- Integer
- Defined in:
- lib/apache/fakerequest.rb
Overview
:nodoc: all
Instance Method Summary collapse
Instance Method Details
#of ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/apache/fakerequest.rb', line 13 def of accum = [] self.times do |i| accum << yield(i) end accum end |