このマニュアルは既にメンテナンスが終了したバージョンの Ruby を対象としています。 最新版のマニュアルへ

Ruby 1.8.7 リファレンスマニュアル

instance method Set#to_a

to_a -> Array[permalink][rdoc]

self を配列に変換します。要素の順序は不定です。

set = Set['hello', 'world']
p set.to_a
#=> ["world", "hello"]