| 52 | } |
| 53 | |
| 54 | type arrayContainerUnsetIterator struct { |
| 55 | content []uint16 |
| 56 | // pos is the index of the next set bit that is >= nextVal. |
| 57 | // When nextVal reaches content[pos], pos is incremented. |
| 58 | pos int |
| 59 | nextVal int |
| 60 | } |
| 61 | |
| 62 | func (acui *arrayContainerUnsetIterator) next() uint16 { |
| 63 | val := acui.nextVal |
nothing calls this directly
no outgoing calls
no test coverage detected