120件ヒット
[101-120件を表示]
(0.070秒)
ライブラリ
- ビルトイン (36)
- bigdecimal (48)
- matrix (12)
- openssl (12)
- uri (12)
クラス
- BigDecimal (48)
- Complex (12)
- Matrix (12)
- Numeric (12)
-
OpenSSL
:: BN (12) - Rational (12)
-
URI
:: Generic (12)
検索結果
-
BigDecimal
# ===(other) -> bool (7.0) -
self が other と等しい場合に true を、そうでない場合に false を返します。
...self が other と等しい場合に true を、そうでない場合に false を返します。
それぞれの値は BigDecimal#coerce で変換して比較される場合があります。
//emlist[][ruby]{
require 'bigdecimal'
BigDecimal('1.0') == 1.0 # => true
//}... -
BigDecimal
# eql?(other) -> bool (7.0) -
self が other と等しい場合に true を、そうでない場合に false を返します。
...self が other と等しい場合に true を、そうでない場合に false を返します。
それぞれの値は BigDecimal#coerce で変換して比較される場合があります。
//emlist[][ruby]{
require 'bigdecimal'
BigDecimal('1.0') == 1.0 # => true
//}...