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

Method append

core/src/processing/data/JSONArray.java:781–784  ·  view source on GitHub ↗

Appends a new value to the JSONArray , increasing the array's length by one. New values may be of the following types: int , float , String , boolean , JSONObject , or JSONArray . @webref jsonarray:method @webBrief Appends a value, increasing the array's le

(String value)

Source from the content-addressed store, hash-verified

779 * @see JSONArray#remove(int)
780 */
781 public JSONArray append(String value) {
782 this.append((Object)value);
783 return this;
784 }
785
786
787 /**

Callers 3

JSONArrayMethod · 0.95
setMethod · 0.95
joinMethod · 0.45

Calls 2

testValidityMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected