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

Method extendAndReplace

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

Source from the content-addressed store, hash-verified

77 }
78
79 public boolean extendAndReplace(int index, boolean value) {
80 extendCapacity(index + 1);
81 return replace0(index, value);
82 }
83
84 public void extendAndSet(int index, boolean value) {
85 extendCapacity(index + 1);

Callers 1

testReplaceMethod · 0.95

Calls 2

extendCapacityMethod · 0.95
replace0Method · 0.95

Tested by 1

testReplaceMethod · 0.76