IntIterable64 allows you to iterate over the values in a Bitmap
| 6 | |
| 7 | // IntIterable64 allows you to iterate over the values in a Bitmap |
| 8 | type IntIterable64 interface { |
| 9 | HasNext() bool |
| 10 | Next() uint64 |
| 11 | } |
| 12 | |
| 13 | // IntPeekable64 allows you to look at the next value without advancing and |
| 14 | // advance as long as the next value is smaller than minval |
no outgoing calls
no test coverage detected
searching dependent graphs…