ManyIntIterable allows you to iterate over the values in a Bitmap
| 681 | |
| 682 | // ManyIntIterable allows you to iterate over the values in a Bitmap |
| 683 | type ManyIntIterable interface { |
| 684 | // NextMany fills buf up with values, returns how many values were returned |
| 685 | NextMany(buf []uint32) int |
| 686 | // NextMany64 fills up buf with 64 bit values, uses hs as a mask (OR), returns how many values were returned |
| 687 | NextMany64(hs uint64, buf []uint64) int |
| 688 | } |
| 689 | |
| 690 | type manyIntIterator struct { |
| 691 | pos int |
no outgoing calls
no test coverage detected
searching dependent graphs…