るりまサーチ (Ruby 3.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.023秒)
トップページ > クエリ:numeric[x] > クエリ:Numeric[x] > クラス:Numeric[x] > クエリ:to_int[x] > バージョン:3.0[x]

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric to_int
  4. numeric numerator
  5. numeric coerce

ライブラリ

検索結果

Numeric#to_int -> Integer (144343.0)

self.to_i と同じです。

self.to_i と同じです。

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