()
| 268 | } |
| 269 | |
| 270 | func (bcui *bitmapContainerUnsetIterator) next() uint16 { |
| 271 | j := bcui.i |
| 272 | bcui.i = bcui.ptr.NextUnsetBit(uint(bcui.i) + 1) |
| 273 | return uint16(j) |
| 274 | } |
| 275 | |
| 276 | func (bcui *bitmapContainerUnsetIterator) hasNext() bool { |
| 277 | return bcui.i >= 0 && bcui.i < 65536 |
nothing calls this directly
no test coverage detected