303件ヒット
[301-303件を表示]
(0.066秒)
ライブラリ
- ビルトイン (225)
- bigdecimal (24)
- csv (12)
- pathname (12)
- shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) - stringio (12)
クラス
- BigDecimal (24)
- CSV (12)
- File (24)
- Float (69)
- Integer (12)
- Numeric (60)
- Pathname (12)
- Rational (60)
- Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) - StringIO (12)
検索結果
-
Rational
# round(precision = 0) -> Integer | Rational (7.0) -
自身ともっとも近い整数を返します。
...y]{
Rational('-123.456').round(+1) # => (-247/2)
Rational('-123.456').round(+1).to_f # => -123.5
Rational('-123.456').round(0) # => -123
Rational('-123.456').round(-1) # => -120
Rational('-123.456').round(-2) # => -100
//}
@see Rational#ceil, Rational#floor, Rational#truncate...