| 767 | } |
| 768 | |
| 769 | type unsetIterator struct { |
| 770 | containerIndex int |
| 771 | nextKey int |
| 772 | hs uint32 |
| 773 | iter shortPeekable |
| 774 | highlowcontainer *roaringArray |
| 775 | |
| 776 | arrayUnsetIter arrayContainerUnsetIterator |
| 777 | runUnsetIter runUnsetIterator16 |
| 778 | bitmapUnsetIter bitmapContainerUnsetIterator |
| 779 | emptyContainerVal uint16 |
| 780 | |
| 781 | start, end uint64 |
| 782 | } |
| 783 | |
| 784 | // HasNext returns true if there are more integers to iterate over |
| 785 | func (iui *unsetIterator) HasNext() bool { |
nothing calls this directly
no outgoing calls
no test coverage detected