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

Method addAll

core/src/main/java/io/questdb/std/ObjList.java:69–75  ·  view source on GitHub ↗
(ReadOnlyObjList<? extends T> that)

Source from the content-addressed store, hash-verified

67 }
68
69 public void addAll(ReadOnlyObjList<? extends T> that) {
70 int n = that.size();
71 checkCapacity(pos + n);
72 for (int i = 0; i < n; i++) {
73 buffer[pos++] = that.getQuick(i);
74 }
75 }
76
77 public void addAll(ReadOnlyObjList<? extends T> that, int lo, int hi) {
78 int n = hi - lo;

Callers 2

runFuzzWithCheckpointMethod · 0.95

Calls 3

checkCapacityMethod · 0.95
sizeMethod · 0.65
getQuickMethod · 0.65

Tested by 1

runFuzzWithCheckpointMethod · 0.76