readMutf8ToAppendable
Creates a OkioMutf8Source around the receiver, reads the length & contents of a Modified UTF-8 string, and then writes those contents to the supplied destination, such as a StringBuilder.
In code, that would be:
val source = OkioMutf8Source(source = this)
val mutf8Length = source.readLength()
return source.readToAppendable(mutf8Length, destination)
Content copied to clipboard
All IOExceptions, EOFExceptions, and UTFDataFormatExceptions documented on those methods apply to this function too.