MCPcopy Index your code
hub / github.com/benfry/processing4 / append

Method append

core/src/processing/data/DoubleList.java:314–319  ·  view source on GitHub ↗

Add a new entry to the list. @webref doublelist:method @brief Add a new entry to the list

(double value)

Source from the content-addressed store, hash-verified

312 * @brief Add a new entry to the list
313 */
314 public void append(double value) {
315 if (count == data.length) {
316 data = PApplet.expand(data);
317 }
318 data[count++] = value;
319 }
320
321
322 public void append(double[] values) {

Callers 4

DoubleListMethod · 0.95
pushMethod · 0.95
appendUniqueMethod · 0.95
joinMethod · 0.45

Calls 2

expandMethod · 0.95
valuesMethod · 0.45

Tested by

no test coverage detected