るりまサーチ

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

別のキーワード

  1. _builtin modulo
  2. bigdecimal modulo
  3. float modulo
  4. numeric modulo
  5. integer modulo

ライブラリ

検索結果

Integer#remainder(other) -> Numeric (18151.0)

self を other で割った余り r を返します。

.../emlist[][ruby]{
5.remainder(3) # => 2
-5.remainder(3) # => -2
5.remainder(-3) # => 2
-5.remainder(-3) # => -2

-1234567890987654321.remainder(13731) # => -6966
-1234567890987654321.remainder(13731.24) # => -9906.22531493148
//}

@see Integer#divmod, Integer#modulo, Numeric#modulo...