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

Method remove

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

Removes the element from a JSONArray in the specified index position. Returns either the value associated with the given index, or null , if there is no value. @webref jsonarray:method @webBrief Removes the element from a JSONArray in the specified index position @param index th

(int index)

Source from the content-addressed store, hash-verified

1157 * @see JSONArray#append(String)
1158 */
1159 public Object remove(int index) {
1160 Object o = this.opt(index);
1161 this.myArrayList.remove(index);
1162 return o;
1163 }
1164
1165
1166// /**

Callers

nothing calls this directly

Calls 1

optMethod · 0.95

Tested by

no test coverage detected