()
| 28 | |
| 29 | return new Iter() { |
| 30 | @Override |
| 31 | public Itr next() throws QueryException { |
| 32 | final Item item = qc.next(nodes); |
| 33 | return item != null ? Itr.get(id(item)) : null; |
| 34 | } |
| 35 | @Override |
| 36 | public Itr get(final long i) throws QueryException { |
| 37 | return Itr.get(id(nodes.get(i))); |