MCPcopy Index your code
hub / github.com/processing/processing / create

Method create

core/src/processing/data/LongDict.java:568–577  ·  view source on GitHub ↗
(String what, long much)

Source from the content-addressed store, hash-verified

566
567
568 protected void create(String what, long much) {
569 if (count == keys.length) {
570 keys = PApplet.expand(keys);
571 values = PApplet.expand(values);
572 }
573 indices.put(what, Integer.valueOf(count));
574 keys[count] = what;
575 values[count] = much;
576 count++;
577 }
578
579
580 /**

Callers 2

setMethod · 0.95
addMethod · 0.95

Calls 2

expandMethod · 0.95
putMethod · 0.45

Tested by

no test coverage detected