WriteSfixed32
(value int32)
| 256 | |
| 257 | // WriteSfixed32 |
| 258 | func (p *BinaryProtocol) WriteSfixed32(value int32) error { |
| 259 | p.Buf = protowire.BinaryEncoder{}.EncodeSfixed32(p.Buf, value) |
| 260 | return nil |
| 261 | } |
| 262 | |
| 263 | // WriteInt64 |
| 264 | func (p *BinaryProtocol) WriteInt64(value int64) error { |
no test coverage detected