BlockIdx returns the index of the block that is currently being decoded.
()
| 345 | |
| 346 | // BlockIdx returns the index of the block that is currently being decoded. |
| 347 | func (d *Decoder) BlockIdx() int { |
| 348 | return d.blockIdx |
| 349 | } |
| 350 | |
| 351 | // Encode takes in a list of uids and a block size. It would pack these uids into blocks of the |
| 352 | // given size, with the last block having fewer uids. Within each block, it stores the first uid as |
nothing calls this directly
no outgoing calls
no test coverage detected