(value uint64)
| 258 | } |
| 259 | |
| 260 | func (b *ByteBuffer) WriteUint64(value uint64) { |
| 261 | b.grow(8) |
| 262 | binary.LittleEndian.PutUint64(b.data[b.writerIndex:], value) |
| 263 | b.writerIndex += 8 |
| 264 | } |
| 265 | |
| 266 | func (b *ByteBuffer) WriteInt64(value int64) { |
| 267 | b.grow(8) |
no test coverage detected