るりまサーチ (Ruby 2.1.0)

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

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l matrix

検索結果

Gem::StreamUI::SilentProgressReporter#count -> nil (72607.0)

何もしません。

何もしません。

Gem::StreamUI::SimpleProgressReporter#count -> Integer (72307.0)

Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。

Gem::StreamUI::SimpleProgressReporter#updated が呼び出された回数を返します。

Matrix#column_count -> Integer (45607.0)

行列の列数を返します。

行列の列数を返します。

Matrix#column_size -> Integer (36307.0)

行列の列数を返します。

行列の列数を返します。

GC#garbage_collect(full_mark: true, immediate_sweep: true) -> nil (19240.0)

ガーベージコレクトを開始します。

ガーベージコレクトを開始します。

GC.start や ObjectSpace.#garbage_collect と同じ働きをします。
GC.disable により GC が禁止されている場合は何もしません。

nil を返します。

@param full_mark マイナー GC を動作させる場合は false を、そうでない場
合は true を指定します。

@param immediate_sweep sweep を遅らせる(Lazy Sweep を行う)場合は false
を、そうでない場合は tr...

絞り込み条件を変える

Gem::StreamUI::VerboseProgressReporter#updated(message) -> nil (9352.0)

現在の Gem::StreamUI::VerboseProgressReporter#count と全体の数とメッセージを表示します。

現在の Gem::StreamUI::VerboseProgressReporter#count と全体の数とメッセージを表示します。

@param message 表示するメッセージを指定します。

CSV::Table#inspect -> String (9322.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>"
//}