Method: Object#**
- Defined in:
- lib/hash-utils/object.rb
#**(count) ⇒ Object
168 169 170 171 172 |
# File 'lib/hash-utils/object.rb', line 168 def **(count) result = [ ] count.times { result << self.dup } return result end |
168 169 170 171 172 |
# File 'lib/hash-utils/object.rb', line 168 def **(count) result = [ ] count.times { result << self.dup } return result end |