Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Arrayクラス > shuffle

instance method Array#shuffle

shuffle -> Array[permalink][rdoc]

配列の要素をランダムシャッフルして,その結果を配列として返します。

例:

a = [ 1, 2, 3 ]           #=> [1, 2, 3]
a.shuffle                 #=> [2, 3, 1]

[SEE_ALSO] Array#shuffle!