()
| 63 | } |
| 64 | |
| 65 | func (ac *arrayContainer) getUnsetIterator() shortPeekable { |
| 66 | return newArrayContainerUnsetIterator(ac.content) |
| 67 | } |
| 68 | |
| 69 | func (ac *arrayContainer) minimum() uint16 { |
| 70 | return ac.content[0] // assume not empty |
nothing calls this directly
no test coverage detected