24件ヒット
[1-24件を表示]
(0.071秒)
ライブラリ
- csv (24)
クラス
-
CSV
:: Table (24)
検索結果
-
CSV
:: Table # by _ row -> CSV :: Table (18120.0) -
ロウモードになっている新しい CSV::Table オブジェクトを返します。
..."], ["row2_1", "row2_2"])
table = CSV::Table.new([row1, row2])
table # => #<CSV::Table mode:col_or_row row_count:3>
row_table = table.by_row # => #<CSV::Table mode:row row_count:3>
row_table[0] # => #<CSV::Row "header1":"row1_1" "header2":"row1_2">
row_table[1] # => #<CSV::Row "header1":"ro... -
CSV
:: Table # by _ row! -> self (6120.0) -
自身をロウモードに変更します。
...], ["row2_1", "row2_2"])
table = CSV::Table.new([row1, row2])
table # => #<CSV::Table mode:col_or_row row_count:3>
table.by_row!
table # => #<CSV::Table mode:row row_count:3>
table[0] # => #<CSV::Row "header1":"row1_1" "header2":"row1_2">
table[1] # => #<CSV::Row "header1":"row2_1" "...