るりまサーチ

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

別のキーワード

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

ライブラリ

検索結果

Integer#succ -> Integer (3101.0)

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

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

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

@see Integer#pred...