| 9 | } |
| 10 | |
| 11 | type stringIter struct { |
| 12 | input string |
| 13 | } |
| 14 | |
| 15 | // String returns an Iterator yielding runes from the supplied string. |
| 16 | func String(input string) Iterator[rune] { |
nothing calls this directly
no outgoing calls
no test coverage detected