move Fixnum#/ document position.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
27f9556de9
commit
bda463c134
18
numeric.c
18
numeric.c
@ -3416,6 +3416,15 @@ int_fdiv(VALUE x, VALUE y)
|
|||||||
return Qnil;
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Document-method: Fixnum#/
|
||||||
|
* call-seq:
|
||||||
|
* fix / numeric -> numeric_result
|
||||||
|
*
|
||||||
|
* Performs division: the class of the resulting object depends on the class of
|
||||||
|
* +numeric+ and on the magnitude of the result. It may return a Bignum.
|
||||||
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
fix_divide(VALUE x, VALUE y, ID op)
|
fix_divide(VALUE x, VALUE y, ID op)
|
||||||
{
|
{
|
||||||
@ -3450,15 +3459,6 @@ fix_divide(VALUE x, VALUE y, ID op)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Document-method: Fixnum#/
|
|
||||||
* call-seq:
|
|
||||||
* fix / numeric -> numeric_result
|
|
||||||
*
|
|
||||||
* Performs division: the class of the resulting object depends on the class of
|
|
||||||
* +numeric+ and on the magnitude of the result. It may return a Bignum.
|
|
||||||
*/
|
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
fix_div(VALUE x, VALUE y)
|
fix_div(VALUE x, VALUE y)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user