るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. matrix tr
  2. html4tr doctype
  3. string tr_s
  4. string tr_s!
  5. string tr

ライブラリ

クラス

キーワード

検索結果

Matrix#row_count -> Integer (81607.0)

行列の行数を返します。

行列の行数を返します。

Matrix#row_size -> Integer (27307.0)

行列の行数を返します。

行列の行数を返します。

CSV::Table#inspect -> String (18622.0)

モードとサイズを US-ASCII な文字列で返します。

モードとサイズを US-ASCII な文字列で返します。

//emlist[][ruby]{
require 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table = csv.read
p table.inspect # => "#<CSV::Table mode:col_or_row row_count:2>"
//}