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

Method addReverseAll

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

Source from the content-addressed store, hash-verified

83 }
84
85 public void addReverseAll(ReadOnlyObjList<? extends T> that) {
86 int n = that.size();
87 checkCapacity(pos + n);
88 for (int i = n - 1; i >= 0; i--) {
89 buffer[pos++] = that.getQuick(i);
90 }
91 }
92
93 @SuppressWarnings("unchecked")
94 public void checkCapacity(int capacity) {

Callers 1

Calls 3

checkCapacityMethod · 0.95
sizeMethod · 0.65
getQuickMethod · 0.65

Tested by

no test coverage detected