()
| 174 | func (c *ReadContext) ReadVarint64() int64 { return c.buffer.ReadVarint64(c.Err()) } |
| 175 | func (c *ReadContext) ReadVarUint32() uint32 { return c.buffer.ReadVarUint32(c.Err()) } |
| 176 | func (c *ReadContext) ReadByte() byte { return c.buffer.ReadByte(c.Err()) } |
| 177 | |
| 178 | func (c *ReadContext) RawString() string { |
| 179 | err := c.Err() |