(index int, v int32)
| 1448 | } |
| 1449 | |
| 1450 | func (b *ByteBuffer) unsafePutInt32(index int, v int32) { |
| 1451 | binary.LittleEndian.PutUint32(b.data[index:], uint32(v)) |
| 1452 | } |
| 1453 | |
| 1454 | func (b *ByteBuffer) unsafePutInt64(index int, v uint64) { |
| 1455 | binary.LittleEndian.PutUint64(b.data[index:], v) |
no test coverage detected