WriteSfixed64
(value int64)
| 286 | |
| 287 | // WriteSfixed64 |
| 288 | func (p *BinaryProtocol) WriteSfixed64(value int64) error { |
| 289 | p.Buf = protowire.BinaryEncoder{}.EncodeSfixed64(p.Buf, value) |
| 290 | return nil |
| 291 | } |
| 292 | |
| 293 | // WriteFloat |
| 294 | func (p *BinaryProtocol) WriteFloat(value float32) error { |
no test coverage detected