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

Method putAll

core/src/main/java/io/questdb/std/IntIntHashMap.java:66–74  ·  view source on GitHub ↗
(IntIntHashMap other)

Source from the content-addressed store, hash-verified

64 }
65
66 public void putAll(IntIntHashMap other) {
67 int[] otherKeys = other.keys;
68 int[] otherValues = other.values;
69 for (int i = 0, n = otherKeys.length; i < n; i++) {
70 if (otherKeys[i] != other.noEntryKeyValue) {
71 put(otherKeys[i], otherValues[i]);
72 }
73 }
74 }
75
76 public void putAt(int index, int key, int value) {
77 if (index < 0) {

Callers 15

testPutAllMethod · 0.45
testPutAllMethod · 0.45
testRehashingMethod · 0.45
getTestConfigurationMethod · 0.45
newBootstrapWithClockMethod · 0.45
createMethod · 0.45
onAckBlockedMethod · 0.45
rewriteSelectClause0Method · 0.45
parseDml0Method · 0.45

Calls 1

putMethod · 0.95

Tested by 7

testPutAllMethod · 0.36
testPutAllMethod · 0.36
testRehashingMethod · 0.36
getTestConfigurationMethod · 0.36
newBootstrapWithClockMethod · 0.36