1件ヒット
[1-1件を表示]
(0.038秒)
別のキーワード
クラス
-
CSV
:: Row (1)
検索結果
-
CSV
:: Row # deconstruct -> [object] (54685.0) -
パターンマッチに使用する行の値の配列を返します。
...パターンマッチに使用する行の値の配列を返します。
//emlist[例][ruby]{
require "csv"
row = CSV::Row.new(["header1", "header2", "header3"], [1, 2, 3])
case row
in [2.., 2.., 2..]
puts "all 2 or more"
in [...2, 2.., 2..]
puts "first column is less than 2, and rest columns...