Skip skips n bytes from the reader.
(n uint64)
| 61 | |
| 62 | // Skip skips n bytes from the reader. |
| 63 | func (d *Decoder) Skip(n uint64) { |
| 64 | binary.ConsumeBytes(d.r, n) |
| 65 | d.o += n |
| 66 | } |
| 67 | |
| 68 | // Pointer loads and returns a pointer address. |
| 69 | func (d *Decoder) Pointer() uint64 { |