| 159 | } |
| 160 | |
| 161 | type manyIntIterator struct { |
| 162 | pos int |
| 163 | hs uint64 |
| 164 | iter roaring.ManyIntIterable |
| 165 | highlowcontainer *roaringArray64 |
| 166 | |
| 167 | // Stack-allocated embedded iterator to reduce GC pressure. |
| 168 | bitmapIter roaring.ManyIntIterator |
| 169 | } |
| 170 | |
| 171 | func (ii *manyIntIterator) init() { |
| 172 | if ii.highlowcontainer.size() > ii.pos { |
nothing calls this directly
no outgoing calls
no test coverage detected