(v int8)
| 152 | // Inline primitive writes (compiler will inline these) |
| 153 | func (c *WriteContext) RawBool(v bool) { c.buffer.WriteBool(v) } |
| 154 | func (c *WriteContext) RawInt8(v int8) { c.buffer.WriteByte_(byte(v)) } |
| 155 | func (c *WriteContext) RawInt16(v int16) { c.buffer.WriteInt16(v) } |
| 156 | func (c *WriteContext) RawInt32(v int32) { c.buffer.WriteInt32(v) } |
| 157 | func (c *WriteContext) RawInt64(v int64) { c.buffer.WriteInt64(v) } |
nothing calls this directly
no test coverage detected