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

Method create

core/src/processing/data/FloatDict.java:595–604  ·  view source on GitHub ↗
(String what, float much)

Source from the content-addressed store, hash-verified

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

Callers 2

setMethod · 0.95
addMethod · 0.95

Calls 2

expandMethod · 0.95
putMethod · 0.45

Tested by

no test coverage detected