| 14 | return string.length() - position; |
| 15 | } |
| 16 | virtual int read() |
| 17 | { |
| 18 | return position < string.length() ? string[position++] : -1; |
| 19 | } |
| 20 | virtual int peek() |
| 21 | { |
| 22 | return position < string.length() ? string[position] : -1; |
no outgoing calls
no test coverage detected