| 99 | } |
| 100 | |
| 101 | long Stream::parseInt() |
| 102 | { |
| 103 | return parseInt(NO_SKIP_CHAR); // terminate on first non-digit character (or timeout) |
| 104 | } |
| 105 | |
| 106 | // as above but a given skipChar is ignored |
| 107 | // this allows format characters (typically commas) in values to be ignored |