るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.020秒)
トップページ > クエリ:Float[x] > バージョン:2.2.0[x] > クエリ:total[x]

別のキーワード

  1. _builtin float
  2. float to_d
  3. json float
  4. float rationalize
  5. fiddle type_float

ライブラリ

クラス

モジュール

検索結果

Benchmark::Tms#total -> Float (54607.0)

合計時間。(utime + stime + cutime + cstime)

合計時間。(utime + stime + cutime + cstime)

GC::Profiler.total_time -> Float (18625.0)

GC のプロファイル情報から GC の総計時間を計算し、msec 単位で返します。

GC のプロファイル情報から GC の総計時間を計算し、msec 単位で返します。

//emlist[例][ruby]{
GC::Profiler.enable
GC.start
GC::Profiler.total_time # => 0.0011530000000000012
//}