Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Integerクラス > next

instance method Integer#next

next -> Fixnum | Bignum[permalink][rdoc]
succ -> Fixnum | Bignum

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

例:

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

[SEE_ALSO] Integer#pred