るりまサーチ

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

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric divmod
  4. numeric fdiv
  5. numeric div

ライブラリ

検索結果

Integer#divmod(other) -> [Integer, Numeric] (18228.0)

self を other で割った商 q と余り r を、 [q, r] という 2 要素の配列にし て返します。 商 q は常に整数ですが、余り r は整数であるとは限りません。

...self を other で割った商 q と余り r を、 [q, r] という 2 要素の配列にし
て返します。 商 q は常に整数ですが、余り r は整数であるとは限りません。

@
param other self を割る数。

@
see Numeric#divmod...

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

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

...

@
param other self を割る数。

//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#di...
...vmod, Integer#modulo, Numeric#modulo...