WriteInt64
(value int64)
| 262 | |
| 263 | // WriteInt64 |
| 264 | func (p *BinaryProtocol) WriteInt64(value int64) error { |
| 265 | p.Buf = protowire.BinaryEncoder{}.EncodeInt64(p.Buf, value) |
| 266 | return nil |
| 267 | } |
| 268 | |
| 269 | // WriteSint64 |
| 270 | func (p *BinaryProtocol) WriteSint64(value int64) error { |
no test coverage detected