IntIterable allows you to iterate over the values in a Bitmap
| 512 | |
| 513 | // IntIterable allows you to iterate over the values in a Bitmap |
| 514 | type IntIterable interface { |
| 515 | HasNext() bool |
| 516 | Next() uint32 |
| 517 | } |
| 518 | |
| 519 | // IntPeekable allows you to look at the next value without advancing and |
| 520 | // advance as long as the next value is smaller than minval |
no outgoing calls
no test coverage detected
searching dependent graphs…