(Key<T> key, int startIdx)
| 259 | private int startIdx; |
| 260 | |
| 261 | private IterableAt(Key<T> key, int startIdx) { |
| 262 | this.key = key; |
| 263 | this.startIdx = startIdx; |
| 264 | } |
| 265 | |
| 266 | @Override |
| 267 | public Iterator<T> iterator() { |
nothing calls this directly
no outgoing calls
no test coverage detected