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

Method append

core/src/processing/data/LongList.java:281–286  ·  view source on GitHub ↗

Add a new entry to the list. @webref intlist:method @webBrief Add a new entry to the list

(long value)

Source from the content-addressed store, hash-verified

279 * @webBrief Add a new entry to the list
280 */
281 public void append(long value) {
282 if (count == data.length) {
283 data = PApplet.expand(data);
284 }
285 data[count++] = value;
286 }
287
288
289 public void append(int[] values) {

Callers 4

LongListMethod · 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