From: "mrkn (Kenta Murata)" Date: 2013-02-17T15:32:19+09:00 Subject: [ruby-dev:47008] [ruby-trunk - Bug #7491] BigMath.#exp に Float、Rational を指定できない Issue #7491 has been updated by mrkn (Kenta Murata). Target version changed from 2.0.0 to next minor ---------------------------------------- Bug #7491: BigMath.#exp に Float、Rational を指定できない https://bugs.ruby-lang.org/issues/7491#change-36406 Author: sho-h (Sho Hashimoto) Status: Assigned Priority: Low Assignee: mrkn (Kenta Murata) 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 -- http://bugs.ruby-lang.org/