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

Method addAll

core/src/main/java/io/questdb/std/BoolList.java:50–55  ·  view source on GitHub ↗
(BoolList that)

Source from the content-addressed store, hash-verified

48 }
49
50 public void addAll(BoolList that) {
51 int p = pos;
52 int s = that.size();
53 setPos(p + s);
54 System.arraycopy(that.buffer, 0, this.buffer, p, s);
55 }
56
57 public void arrayCopy(int srcPos, int dstPos, int length) {
58 System.arraycopy(buffer, srcPos, buffer, dstPos, length);

Callers 1

testAddAllAndEqualsMethod · 0.95

Calls 2

setPosMethod · 0.95
sizeMethod · 0.65

Tested by 1

testAddAllAndEqualsMethod · 0.76