()
| 173 | func (c *ReadContext) ReadVarint32() int32 { return c.buffer.ReadVarint32(c.Err()) } |
| 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 { |
no test coverage detected