Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/questdb/questdb
/ setPos
Method
setPos
core/src/main/java/io/questdb/std/ObjList.java:311–314 ·
view source on GitHub ↗
(int newPos)
Source
from the content-addressed store, hash-verified
309
}
310
311
public
void
setPos(
int
newPos) {
312
checkCapacity(newPos);
313
pos = newPos;
314
}
315
316
public
void
setQuick(
int
index, T value) {
317
assert index < pos :
"index out of bounds, "
+ index +
" >= "
+ pos;
Callers
4
createWriterThread
Method · 0.95
BaseAsyncMultiHorizonJoinAtom
Method · 0.95
ObjList
Method · 0.95
createNewColumnList
Method · 0.95
Calls
1
checkCapacity
Method · 0.95
Tested by
1
createWriterThread
Method · 0.76