| 18 | return position < string.length() ? string[position++] : -1; |
| 19 | } |
| 20 | virtual int peek() |
| 21 | { |
| 22 | return position < string.length() ? string[position] : -1; |
| 23 | } |
| 24 | virtual void flush(){}; |
| 25 | // Print methods |
| 26 | virtual size_t write(uint8_t c) |
nothing calls this directly
no outgoing calls
no test coverage detected