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

Method append

core/src/processing/core/PApplet.java:8520–8524  ·  view source on GitHub ↗

( begin auto-generated from append.xml ) Expands an array by one element and adds data to the new position. The datatype of the element parameter must be the same as the datatype of the array. When using an array of objects, the data returned from the function must be cast to the

(byte array[], byte value)

Source from the content-addressed store, hash-verified

8518 * @see PApplet#expand(boolean[])
8519 */
8520 static public byte[] append(byte array[], byte value) {
8521 array = expand(array, array.length + 1);
8522 array[array.length-1] = value;
8523 return array;
8524 }
8525
8526 static public char[] append(char array[], char value) {
8527 array = expand(array, array.length + 1);

Callers 10

insertCodeMethod · 0.95
parsePathMethod · 0.45
handleSettingsMethod · 0.45
runMethod · 0.45
printMethod · 0.45
joinMethod · 0.45
endShapeMethod · 0.45
endShapeMethod · 0.45
executeMethod · 0.45
processMethod · 0.45

Calls 2

expandMethod · 0.95
setMethod · 0.65

Tested by

no test coverage detected