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

Method add

core/src/main/java/io/questdb/std/BoolList.java:45–48  ·  view source on GitHub ↗
(boolean value)

Source from the content-addressed store, hash-verified

43 }
44
45 public void add(boolean value) {
46 checkCapacity(pos + 1);
47 buffer[pos++] = value;
48 }
49
50 public void addAll(BoolList that) {
51 int p = pos;

Callers 6

testAddAllAndEqualsMethod · 0.95
testAddAndGetMethod · 0.95
testArrayCopyMethod · 0.95
testRemoveIndexMethod · 0.95
testToStringMethod · 0.95

Calls 1

checkCapacityMethod · 0.95

Tested by 6

testAddAllAndEqualsMethod · 0.76
testAddAndGetMethod · 0.76
testArrayCopyMethod · 0.76
testRemoveIndexMethod · 0.76
testToStringMethod · 0.76