るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.064秒)
トップページ > クエリ:-[x] > クラス:Set[x] > クエリ:to_a[x]

別のキーワード

  1. _builtin to_s
  2. openssl to_der
  3. openssl to_s
  4. _builtin to_a
  5. openssl to_pem

ライブラリ

検索結果

Set#to_a -> Array (18208.0)

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

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

//emlist[][ruby]{
require 'set'
set
= Set['hello', 'world']
p set.to_a # => ["hello", "world"]
//}...
...self を配列に変換します。要素の順序は不定です。

//emlist[][ruby]{
set
= Set['hello', 'world']
p set.to_a # => ["hello", "world"]
//}...