aris
1
Issue #7491 has been reported by sho-h (Sho H.).
Bug #7491: BigMath.#exp に Float、Rational を指定できない
Author: sho-h (Sho H.)
Status: Open
Priority: Low
Assignee:
Category: lib
Target version: 2.0.0
ruby -v: ruby 2.0.0dev (2012-12-02 trunk 38135) [x86_64-linux]
1.9.3 から BigMath.#exp でも Fixnum、Float、Rational
オブジェクトが指定できるのではないかと思うのですが、Float、Rational については現在は ArgumentError と
TypeError になってしまうようです。
puts BigMath.exp(BigDecimal(“1.0”), 10) # => 0.2718281828E1
puts BigMath.exp(1, 10) # => 0.2718281828E1
puts BigMath.exp(1.0, 10) # => ArgumentError
puts BigMath.exp(Rational(1, 1), 10) # => TypeError
Issue #7491 has been updated by mrkn (Kenta M.).
Status changed from Open to Assigned
Assignee set to mrkn (Kenta M.)
Bug #7491: BigMath.#exp に Float、Rational を指定できない
Author: sho-h (Sho H.)
Status: Assigned
Priority: Low
Assignee: mrkn (Kenta M.)
Category: lib
Target version: 2.0.0
ruby -v: ruby 2.0.0dev (2012-12-02 trunk 38135) [x86_64-linux]
1.9.3 から BigMath.#exp でも Fixnum、Float、Rational
オブジェクトが指定できるのではないかと思うのですが、Float、Rational については現在は ArgumentError と
TypeError になってしまうようです。
puts BigMath.exp(BigDecimal(“1.0”), 10) # => 0.2718281828E1
puts BigMath.exp(1, 10) # => 0.2718281828E1
puts BigMath.exp(1.0, 10) # => ArgumentError
puts BigMath.exp(Rational(1, 1), 10) # => TypeError
Issue #7491 has been updated by mrkn (Kenta M.).
Target version changed from 2.0.0 to next minor
Bug #7491: BigMath.#exp に Float、Rational を指定できない
Author: sho-h (Sho H.)
Status: Assigned
Priority: Low
Assignee: mrkn (Kenta M.)
Category: lib
Target version: next minor
ruby -v: ruby 2.0.0dev (2012-12-02 trunk 38135) [x86_64-linux]
1.9.3 から BigMath.#exp でも Fixnum、Float、Rational
オブジェクトが指定できるのではないかと思うのですが、Float、Rational については現在は ArgumentError と
TypeError になってしまうようです。
puts BigMath.exp(BigDecimal(“1.0”), 10) # => 0.2718281828E1
puts BigMath.exp(1, 10) # => 0.2718281828E1
puts BigMath.exp(1.0, 10) # => ArgumentError
puts BigMath.exp(Rational(1, 1), 10) # => TypeError