* Decode a stream of UTF8-encoded byte arrays to a stream of strings. * * The byte arrays producetd from the ByteChunkIterator on which this is * called will be interpreted as concatenated. No assumptions are made about * the boundaries of the incoming chunks, so a multi-byte UTF8 encod
()
| 31 | * for instance, when reading fixed-size byte arrays from a file. |
| 32 | */ |
| 33 | decodeUTF8(): StringIterator { |
| 34 | return new Utf8Iterator(this); |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | // ============================================================================ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…