Write a byte. Nothing to see here!
(ctx context.Context, value int8)
| 300 | |
| 301 | // Write a byte. Nothing to see here! |
| 302 | func (p *TCompactProtocol) WriteByte(ctx context.Context, value int8) error { |
| 303 | err := p.writeByteDirect(byte(value)) |
| 304 | return NewTProtocolException(err) |
| 305 | } |
| 306 | |
| 307 | // Write an I16 as a zigzag varint. |
| 308 | func (p *TCompactProtocol) WriteI16(ctx context.Context, value int16) error { |
nothing calls this directly
no test coverage detected