るりまサーチ (Ruby 3.2)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.009秒)
トップページ > クエリ:cc[x] > クラス:Integer[x] > バージョン:3.2[x]

別のキーワード

  1. mkmf cc_command
  2. envelope cc
  3. net/imap cc
  4. kernel cc_command
  5. cc net/imap

ライブラリ

検索結果

Integer#succ -> Integer (9304.0)

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

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

//emlist[][ruby]{
1.next #=> 2
(-1).next #=> 0
1.succ #=> 2
(-1).succ #=> 0
//}

@see Integer#pred...