るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.072秒)

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. bigdecimal to_r
  5. fileutils cp_r

クラス

検索結果

CSV::Row#to_hash -> Hash (21116.0)

自身をシンプルなハッシュに変換します。

...プルなハッシュに変換します。

フィールドの順序は無視されます。
重複したフィールドは削除されます。

//emlist[例][ruby]{
r
equire "csv"

r
ow = CSV::Row.new(["header2", "header1", "header2"], [1, 2, 3])
r
ow.to_hash # => {"header2"=>3, "header1"=>2}
//}...