提交 7b3d663b 编写于 作者: K Koichi ITO

Several representation of BigDecimal has changed in Ruby 2.4.0+ [ci skip]

cf. https://github.com/ruby/bigdecimal/pull/42
上级 aaece61a
......@@ -107,6 +107,13 @@ class BigDecimal
# BigDecimals are duplicable:
#
# BigDecimal.new("1.2").duplicable? # => true
#
# In Ruby 2.4.0:
#
# BigDecimal.new("1.2").dup # => 0.12e1
#
# Whereas in Ruby 2.2 and 2.3:
#
# BigDecimal.new("1.2").dup # => #<BigDecimal:...,'0.12E1',18(18)>
def duplicable?
true
......
......@@ -1980,7 +1980,15 @@ and that symbol specifiers are also supported:
BigDecimal.new(5.00, 6).to_s(:db) # => "5.0"
```
Engineering notation is still supported:
Engineering notation is still supported.
In Ruby 2.4:
```ruby
BigDecimal.new(5.00, 6).to_s("e") # => "0.5e1"
```
Whereas in Ruby 2.2 and 2.3:
```ruby
BigDecimal.new(5.00, 6).to_s("e") # => "0.5E1"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册