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

Method extendAndSet

core/src/main/java/io/questdb/std/BoolList.java:84–87  ·  view source on GitHub ↗
(int index, boolean value)

Source from the content-addressed store, hash-verified

82 }
83
84 public void extendAndSet(int index, boolean value) {
85 extendCapacity(index + 1);
86 buffer[index] = value;
87 }
88
89 public boolean get(int index) {
90 assert index < pos;

Callers 1

testExtendAndSetMethod · 0.95

Calls 1

extendCapacityMethod · 0.95

Tested by 1

testExtendAndSetMethod · 0.76