Returns the successor of an int value. @param i the input value @return i + 1
(int i)
| 429 | * @return {@code i + 1} |
| 430 | */ |
| 431 | public static int next(int i) { |
| 432 | return i + 1; |
| 433 | } |
| 434 | |
| 435 | /** |
| 436 | * Returns the successor of a {@code long} value. |
no outgoing calls
no test coverage detected