()
| 77 | IndexValue nextVal = origIter.hasNext() ? origIter.next() : new IndexValue(Integer.MAX_VALUE, Double.NaN); |
| 78 | IndexValue curVal = new IndexValue(-1, Double.NaN); |
| 79 | @Override |
| 80 | public boolean hasNext() |
| 81 | { |
| 82 | return nextVal.getIndex() < length+startPosition; |
| 83 | } |
| 84 | |
| 85 | @Override |
| 86 | public IndexValue next() |
no test coverage detected