class Array

Changes since 0.2:

  1. Removed the aliases to their own files.

Public Instance Methods

shuffle() click to toggle source
# File lib/Array/shuffle.rb, line 14
def shuffle
  sort_by{rand}
end