A simple interface for advancing through a sequence of characters, that communicates that advance back to the source.
| 89 | * advance back to the source. |
| 90 | */ |
| 91 | public interface CharIterator { |
| 92 | public boolean hasNext(); |
| 93 | |
| 94 | public char next(); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Decodes the next VLQValue from the provided CharIterator. |
no outgoing calls
no test coverage detected