* complex.c: edited rdoc.

* numeric.c: ditto.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tadf 2009-06-20 11:29:21 +00:00
parent 40d6a7527e
commit a05fd849a1
3 changed files with 22 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Sat Jun 20 20:28:44 2009 Tadayoshi Funaba <tadf@dotrb.org>
* complex.c: edited rdoc.
* numeric.c: ditto.
Sat Jun 20 08:56:47 2009 Tadayoshi Funaba <tadf@dotrb.org> Sat Jun 20 08:56:47 2009 Tadayoshi Funaba <tadf@dotrb.org>
* complex.c: edited rdoc. * complex.c: edited rdoc.

View File

@ -380,6 +380,13 @@ nucomp_s_canonicalize_internal(VALUE klass, VALUE real, VALUE imag)
} }
} }
/*
* call-seq:
* Complex.rect(real[, imag]) => complex
* Complex.rectangular(real[, imag]) => complex
*
* Returns a complex object which denotes the given rectangular form.
*/
static VALUE static VALUE
nucomp_s_new(int argc, VALUE *argv, VALUE klass) nucomp_s_new(int argc, VALUE *argv, VALUE klass)
{ {
@ -519,6 +526,12 @@ f_complex_polar(VALUE klass, VALUE x, VALUE y)
f_mul(x, m_sin(y))); f_mul(x, m_sin(y)));
} }
/*
* call-seq:
* Complex.polar(abs, arg) => complex
*
* Returns a complex object which denotes the given polar form.
*/
static VALUE static VALUE
nucomp_s_polar(VALUE klass, VALUE abs, VALUE arg) nucomp_s_polar(VALUE klass, VALUE abs, VALUE arg)
{ {

View File

@ -502,8 +502,9 @@ num_to_int(VALUE num)
* *
* Document-class: Float * Document-class: Float
* *
* <code>Float</code> objects represent inexact numbers using the native * <code>Float</code> objects represent inexact real numbers using
* architecture's double-precision floating point representation. * the native architecture's double-precision floating point
* representation.
*/ */
VALUE VALUE