(v byte)
| 161 | func (c *WriteContext) WriteVarint64(v int64) { c.buffer.WriteVarint64(v) } |
| 162 | func (c *WriteContext) WriteVarUint32(v uint32) { c.buffer.WriteVarUint32(v) } |
| 163 | func (c *WriteContext) WriteByte(v byte) { c.buffer.WriteByte_(v) } |
| 164 | func (c *WriteContext) WriteBytes(v []byte) { c.buffer.WriteBinary(v) } |
| 165 | |
| 166 | func (c *WriteContext) RawString(v string) { |
nothing calls this directly
no test coverage detected