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

Method create

core/src/processing/data/DoubleDict.java:598–607  ·  view source on GitHub ↗
(String what, double much)

Source from the content-addressed store, hash-verified

596
597
598 protected void create(String what, double much) {
599 if (count == keys.length) {
600 keys = PApplet.expand(keys);
601 values = PApplet.expand(values);
602 }
603 indices.put(what, Integer.valueOf(count));
604 keys[count] = what;
605 values[count] = much;
606 count++;
607 }
608
609
610 /**

Callers 2

setMethod · 0.95
addMethod · 0.95

Calls 2

expandMethod · 0.95
putMethod · 0.45

Tested by

no test coverage detected