[前][次][番号順一覧][スレッド一覧]

ruby-changes:8317

From: tadf <ko1@a...>
Date: Sun, 19 Oct 2008 07:44:16 +0900 (JST)
Subject: [ruby-changes:8317] Ruby:r19845 (trunk): * lib/cmath.rb (log2,cbrt,frexp,ldexp,hypot,erf,erfc,gamma,lgamma):

tadf	2008-10-19 07:43:06 +0900 (Sun, 19 Oct 2008)

  New Revision: 19845

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19845

  Log:
    * lib/cmath.rb (log2,cbrt,frexp,ldexp,hypot,erf,erfc,gamma,lgamma):
      should be also privided as module function.  [ruby-dev:36787]

  Modified files:
    trunk/ChangeLog
    trunk/lib/cmath.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 19844)
+++ ChangeLog	(revision 19845)
@@ -1,3 +1,8 @@
+Sun Oct 19 07:37:13 2008  Tadayoshi Funaba  <tadf@d...>
+
+	* lib/cmath.rb (log2,cbrt,frexp,ldexp,hypot,erf,erfc,gamma,lgamma):
+	  should be also privided as module function.  [ruby-dev:36787]
+
 Sun Oct 19 07:25:08 2008  Yuki Sonoda (Yugui)  <yugui@y...>
 
 	* keywords, lex.c.src, opt_insn_unif.def, opt_operand.def: moved rarely changed
Index: lib/cmath.rb
===================================================================
--- lib/cmath.rb	(revision 19844)
+++ lib/cmath.rb	(revision 19845)
@@ -220,4 +220,14 @@
   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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]