Next moves the decoder on to the next block.
()
| 374 | |
| 375 | // Next moves the decoder on to the next block. |
| 376 | func (d *Decoder) Next() []uint64 { |
| 377 | d.blockIdx++ |
| 378 | return d.UnpackBlock() |
| 379 | } |
| 380 | |
| 381 | // BlockIdx returns the index of the block that is currently being decoded. |
| 382 | func (d *Decoder) BlockIdx() int { |
no test coverage detected