1件ヒット
[1-1件を表示]
(0.009秒)
ライブラリ
- ビルトイン (1)
検索結果
-
Integer
# succ -> Integer (9304.0) -
self の次の整数を返します。
...self の次の整数を返します。
//emlist[][ruby]{
1.next #=> 2
(-1).next #=> 0
1.succ #=> 2
(-1).succ #=> 0
//}
@see Integer#pred...