HasNext returns true if there are more integers to iterate over
()
| 543 | |
| 544 | // HasNext returns true if there are more integers to iterate over |
| 545 | func (ii *intIterator) HasNext() bool { |
| 546 | return ii.pos < ii.highlowcontainer.size() |
| 547 | } |
| 548 | |
| 549 | func (ii *intIterator) init() { |
| 550 | if ii.highlowcontainer.size() > ii.pos { |
no test coverage detected