Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BaseXdb/basex
/ next
Method
next
basex-core/src/main/java/org/basex/query/value/node/DBNode.java:262–268 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
260
int
curr = first;
261
262
@Override
263
public
DBNode next() {
264
if
(curr == -1)
return
null;
265
final
int
c = curr, k = data.kind(c);
266
curr = data.parent(c, k);
267
return
new
DBNode(DBNode.this, c, k);
268
}
269
};
270
}
271
Callers
nothing calls this directly
Calls
6
ancestorIter
Method · 0.95
attSize
Method · 0.80
dbKind
Method · 0.80
kind
Method · 0.65
size
Method · 0.65
parent
Method · 0.45
Tested by
no test coverage detected