mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[DOC]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6b6fa21031
commit
c19c8ef4ae
2 changed files with 1 additions and 27 deletions
26
bignum.c
26
bignum.c
|
@ -5350,18 +5350,6 @@ rb_integer_float_eq(VALUE x, VALUE y)
|
||||||
return rb_big_eq(x, y);
|
return rb_big_eq(x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* call-seq:
|
|
||||||
* big <=> numeric -> -1, 0, +1 or nil
|
|
||||||
*
|
|
||||||
* Comparison---Returns -1, 0, or +1 depending on whether +big+ is
|
|
||||||
* less than, equal to, or greater than +numeric+. This is the
|
|
||||||
* basis for the tests in Comparable.
|
|
||||||
*
|
|
||||||
* +nil+ is returned if the two values are incomparable.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_big_cmp(VALUE x, VALUE y)
|
rb_big_cmp(VALUE x, VALUE y)
|
||||||
{
|
{
|
||||||
|
@ -6756,13 +6744,6 @@ rb_big_bit_length(VALUE big)
|
||||||
INTEGER_PACK_LSWORD_FIRST|INTEGER_PACK_NATIVE_BYTE_ORDER);
|
INTEGER_PACK_LSWORD_FIRST|INTEGER_PACK_NATIVE_BYTE_ORDER);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* call-seq:
|
|
||||||
* big.odd? -> true or false
|
|
||||||
*
|
|
||||||
* Returns <code>true</code> if <i>big</i> is an odd number.
|
|
||||||
*/
|
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_big_odd_p(VALUE num)
|
rb_big_odd_p(VALUE num)
|
||||||
{
|
{
|
||||||
|
@ -6772,13 +6753,6 @@ rb_big_odd_p(VALUE num)
|
||||||
return Qfalse;
|
return Qfalse;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* call-seq:
|
|
||||||
* big.even? -> true or false
|
|
||||||
*
|
|
||||||
* Returns <code>true</code> if <i>big</i> is an even number.
|
|
||||||
*/
|
|
||||||
|
|
||||||
VALUE
|
VALUE
|
||||||
rb_big_even_p(VALUE num)
|
rb_big_even_p(VALUE num)
|
||||||
{
|
{
|
||||||
|
|
|
@ -3809,7 +3809,7 @@ int_equal(VALUE x, VALUE y)
|
||||||
* call-seq:
|
* call-seq:
|
||||||
* int <=> numeric -> -1, 0, +1 or nil
|
* int <=> numeric -> -1, 0, +1 or nil
|
||||||
*
|
*
|
||||||
* Comparison---Returns +-1+, +0+, ++1+ or +nil+ depending on whether +fix+ is
|
* Comparison---Returns +-1+, +0+, ++1+ or +nil+ depending on whether +int+ is
|
||||||
* less than, equal to, or greater than +numeric+.
|
* less than, equal to, or greater than +numeric+.
|
||||||
*
|
*
|
||||||
* This is the basis for the tests in the Comparable module.
|
* This is the basis for the tests in the Comparable module.
|
||||||
|
|
Loading…
Add table
Reference in a new issue