るりまサーチ (Ruby 2.3.0)

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

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric to_int
  4. numeric to_c
  5. numeric round

ライブラリ

クラス

検索結果

Numeric#to_int -> Integer (90343.0)

self.to_i と同じです。

self.to_i と同じです。

//emlist[例][ruby]{
(2+0i).to_int # => 2
Rational(3).to_int # => 3
//}