readMutf8String
Creates a StreamMutf8Source around the receiver, reads the length & contents of a Modified UTF-8 string, and then returns the contents as a String.
In code, that would be:
val source = StreamMutf8Source(stream = this)
val mutf8Length = source.readLength()
return source.readToString(mutf8Length)
Content copied to clipboard
All IOExceptions, EOFExceptions, and UTFDataFormatExceptions documented on those methods apply to this function too.