A simple interface for advancing through a sequence of characters, that communicates that advance back to the source.
| 121 | * communicates that advance back to the source. |
| 122 | */ |
| 123 | interface CharIterator { |
| 124 | boolean hasNext(); |
| 125 | |
| 126 | char next(); |
| 127 | } |
| 128 | } |
no outgoing calls
no test coverage detected