Example #1
0
func readVarintString(rb *typed.ReadBuffer) string {
	length := rb.ReadUvarint()
	return rb.ReadString(int(length))
}