Writefixed32
(value uint32)
| 250 | |
| 251 | // Writefixed32 |
| 252 | func (p *BinaryProtocol) WriteFixed32(value uint32) error { |
| 253 | p.Buf = protowire.BinaryEncoder{}.EncodeFixed32(p.Buf, value) |
| 254 | return nil |
| 255 | } |
| 256 | |
| 257 | // WriteSfixed32 |
| 258 | func (p *BinaryProtocol) WriteSfixed32(value int32) error { |
no test coverage detected