MCPcopy Create free account
hub / github.com/questdb/questdb / setAll

Method setAll

core/src/main/java/io/questdb/std/ObjList.java:305–309  ·  view source on GitHub ↗
(int count, T value)

Source from the content-addressed store, hash-verified

303 }
304
305 public void setAll(int count, T value) {
306 checkCapacity(count);
307 pos = count;
308 Arrays.fill(buffer, value);
309 }
310
311 public void setPos(int newPos) {
312 checkCapacity(newPos);

Callers

nothing calls this directly

Calls 2

checkCapacityMethod · 0.95
fillMethod · 0.45

Tested by

no test coverage detected