aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cmath.rb
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-18 22:43:06 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-18 22:43:06 +0000
commit81b1fef56c864d3c0f9e654861f4a0826e33af24 (patch)
treeb43207884f6412ed1401ebd8898e787ed7814295 /lib/cmath.rb
parentc2091e37ec2fd62e82f5aa69e8d147e0c329cdff (diff)
downloadruby-81b1fef56c864d3c0f9e654861f4a0826e33af24.tar.gz
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@19845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/cmath.rb')
-rw-r--r--lib/cmath.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/cmath.rb b/lib/cmath.rb
index d293401804..00bcc9087f 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