[DOC] merge documents for {Integer,Fixnum}#succ.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54861 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
215a3894d0
commit
396d835d09
17
numeric.c
17
numeric.c
@ -2935,6 +2935,10 @@ int_even_p(VALUE num)
|
||||
}
|
||||
|
||||
/*
|
||||
* Document-method: Integer#succ
|
||||
* Document-method: Integer#next
|
||||
* Document-method: Fixnum#succ
|
||||
* Document-method: Fixnum#next
|
||||
* call-seq:
|
||||
* int.next -> integer
|
||||
* int.succ -> integer
|
||||
@ -2943,6 +2947,8 @@ int_even_p(VALUE num)
|
||||
*
|
||||
* 1.next #=> 2
|
||||
* (-1).next #=> 0
|
||||
* 1.succ #=> 2
|
||||
* (-1).succ #=> 0
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
@ -2952,17 +2958,6 @@ fix_succ(VALUE num)
|
||||
return LONG2NUM(i);
|
||||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* int.next -> integer
|
||||
* int.succ -> integer
|
||||
*
|
||||
* Returns the Integer equal to +int+ + 1, same as Fixnum#next.
|
||||
*
|
||||
* 1.next #=> 2
|
||||
* (-1).next #=> 0
|
||||
*/
|
||||
|
||||
VALUE
|
||||
rb_int_succ(VALUE num)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user