MCPcopy Create free account
hub / github.com/BaseXdb/basex / next

Method next

basex-core/src/main/java/org/basex/query/expr/List.java:159–167  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

157 private int e;
158
159 @Override
160 public Item next() throws QueryException {
161 while(e < el) {
162 final Item item = qc.next(iter(e));
163 if(item != null) return item;
164 e++;
165 }
166 return null;
167 }
168
169 @Override
170 public Item get(final long i) throws QueryException {

Callers

nothing calls this directly

Calls 2

iterMethod · 0.95
nextMethod · 0.65

Tested by

no test coverage detected