(content []uint16)
| 93 | } |
| 94 | |
| 95 | func newArrayContainerUnsetIterator(content []uint16) *arrayContainerUnsetIterator { |
| 96 | acui := &arrayContainerUnsetIterator{content: content, pos: 0, nextVal: 0} |
| 97 | for acui.pos < len(acui.content) && uint16(acui.nextVal) >= acui.content[acui.pos] { |
| 98 | acui.nextVal++ |
| 99 | acui.pos++ |
| 100 | } |
| 101 | return acui |
| 102 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…