Module: RandallMonkey::PickableArray

Defined in:
lib/randall/monkey_patch.rb

Instance Method Summary collapse

Instance Method Details

#pickObject

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