Read ahead one character without moving the cursor. @return The next character or -1 if no further input is available
()
| 234 | * @return The next character or -1 if no further input is available |
| 235 | */ |
| 236 | int peekChar() { |
| 237 | return peekChar(0); |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Read ahead the given number of characters without moving the cursor. |
no outgoing calls
no test coverage detected