MCPcopy 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

createWriterThreadMethod · 0.95
ObjListMethod · 0.95
createNewColumnListMethod · 0.95

Calls 1

checkCapacityMethod · 0.95

Tested by 1

createWriterThreadMethod · 0.76