MCPcopy Index your code
hub / github.com/questdb/questdb / addAll

Method addAll

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

Source from the content-addressed store, hash-verified

69 }
70
71 public void addAll(ObjHashSet<? extends T> that) {
72 for (int i = 0, n = that.size(); i < n; i++) {
73 this.add(that.get(i));
74 }
75 }
76
77 public void addAll(ObjList<? extends T> that) {
78 for (int i = 0, n = that.size(); i < n; i++) {

Callers

nothing calls this directly

Calls 4

addMethod · 0.95
sizeMethod · 0.65
getMethod · 0.65
getQuickMethod · 0.65

Tested by

no test coverage detected