NextMany fills buf up with values, returns how many values were returned
(buf []uint32)
| 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 | } |
no outgoing calls