Next moves the decoder on to the next block.
()
| 339 | |
| 340 | // Next moves the decoder on to the next block. |
| 341 | func (d *Decoder) Next() []uint64 { |
| 342 | d.blockIdx++ |
| 343 | return d.UnpackBlock() |
| 344 | } |
| 345 | |
| 346 | // BlockIdx returns the index of the block that is currently being decoded. |
| 347 | func (d *Decoder) BlockIdx() int { |