From 00b2f5be9cbe7ef5ead521e6a99103489f64f821 Mon Sep 17 00:00:00 2001 From: tadf Date: Sat, 18 Oct 2008 22:43:06 +0000 Subject: * lib/cmath.rb (log2,cbrt,frexp,ldexp,hypot,erf,erfc,gamma,lgamma): should be also privided as module function. [ruby-dev:36787] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/cmath.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib') diff --git a/lib/cmath.rb b/lib/cmath.rb index d29340180..00bcc9087 100644 --- a/lib/cmath.rb +++ b/lib/cmath.rb @@ -220,4 +220,14 @@ module CMath module_function :atanh! module_function :atanh + module_function :log2 + module_function :cbrt + module_function :frexp + module_function :ldexp + module_function :hypot + module_function :erf + module_function :erfc + module_function :gamma + module_function :lgamma + end -- cgit