Module: RandallMonkey::PickableArray
- Defined in:
- lib/randall/monkey_patch.rb
Instance Method Summary collapse
-
#pick ⇒ Object
Randomly pick an element from the receiver.
Instance Method Details
#pick ⇒ Object
Randomly pick an element from the receiver.
10 11 12 |
# File 'lib/randall/monkey_patch.rb', line 10 def pick self[Kernel.rand(self.size)] end |