()
| 166 | func (c *ReadContext) RawBool() bool { return c.buffer.ReadBool(c.Err()) } |
| 167 | func (c *ReadContext) RawInt8() int8 { return int8(c.buffer.ReadByte(c.Err())) } |
| 168 | func (c *ReadContext) RawInt16() int16 { return c.buffer.ReadInt16(c.Err()) } |
| 169 | func (c *ReadContext) RawInt32() int32 { return c.buffer.ReadInt32(c.Err()) } |
| 170 | func (c *ReadContext) RawInt64() int64 { return c.buffer.ReadInt64(c.Err()) } |
| 171 | func (c *ReadContext) RawFloat32() float32 { return c.buffer.ReadFloat32(c.Err()) } |