MCPcopy Create free account
hub / github.com/e2wugui/zeze / addAll

Method addAll

ZezeJava/ZezeJava/src/main/java/Zeze/Util/LongHashSet.java:111–117  ·  view source on GitHub ↗
(@NotNull LongHashSet set)

Source from the content-addressed store, hash-verified

109 }
110
111 public void addAll(@NotNull LongHashSet set) {
112 if (set.hasZeroKey)
113 hasZeroKey = true;
114 for (long k : set.keyTable)
115 if (k != 0)
116 add(k);
117 }
118
119 public void addAll(@NotNull Collection<Long> set) {
120 for (long v : set)

Callers

nothing calls this directly

Calls 1

addMethod · 0.95

Tested by

no test coverage detected