()
| 136 | } |
| 137 | |
| 138 | func (bcsi *bitmapContainerShortIterator) next() uint16 { |
| 139 | j := bcsi.i |
| 140 | bcsi.i = bcsi.ptr.NextSetBit(uint(bcsi.i) + 1) |
| 141 | return uint16(j) |
| 142 | } |
| 143 | |
| 144 | func (bcsi *bitmapContainerShortIterator) hasNext() bool { |
| 145 | return bcsi.i >= 0 |