Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/questdb/questdb
/ next
Method
next
core/src/main/java/io/questdb/std/ObjectPool.java:68–76 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
66
}
67
68
public
T next() {
69
if
(pos == size) {
70
expand();
71
}
72
73
T o = list.getQuick(pos++);
74
o.clear();
75
return
o;
76
}
77
78
/**
79
* Gives access to an object in the pool without incrementing the position.
Callers
nothing calls this directly
Calls
3
expand
Method · 0.95
getQuick
Method · 0.65
clear
Method · 0.65
Tested by
no test coverage detected