instance method Integer#next

next -> Integer[permalink][rdoc]
succ -> Integer

self の次の整数を返します。

例:

1.next      #=> 2
(-1).next   #=> 0
1.succ      #=> 2
(-1).succ   #=> 0

[SEE_ALSO] Integer#pred