Class: Rubybooty::Array

Inherits:
Object
  • Object
show all
Defined in:
lib/rubybooty.rb

Instance Method Summary collapse

Instance Method Details

#shuffle!Object



5
6
7
8
# File 'lib/rubybooty.rb', line 5

def shuffle!
  size.downto(1) { |n| push delete_at(rand(n)) }
  self
end