(index int, v uint64)
| 1452 | } |
| 1453 | |
| 1454 | func (b *ByteBuffer) unsafePutInt64(index int, v uint64) { |
| 1455 | binary.LittleEndian.PutUint64(b.data[index:], v) |
| 1456 | } |
| 1457 | |
| 1458 | // UnsafePutUint32 writes a uint32 at the given offset without advancing writerIndex. |
| 1459 | // Caller must have called Reserve() to ensure capacity. |