Pad writes n zero bytes to the writer.
(n uint64)
| 59 | |
| 60 | // Pad writes n zero bytes to the writer. |
| 61 | func (e *Encoder) Pad(n uint64) { |
| 62 | binary.WriteBytes(e.w, 0, int32(n)) |
| 63 | e.o += n |
| 64 | } |
| 65 | |
| 66 | // Pointer stores a pointer address. |
| 67 | func (e *Encoder) Pointer(addr uint64) { |