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

Method setLong

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

Put or replace a long value. If the index is greater than the length of the JSONArray, then null elements will be added as necessary to pad it out. @param index The subscript. @param value A long value. @return this. @throws RuntimeException If the index is negative.

(int index, long value)

Source from the content-addressed store, hash-verified

976 * @throws RuntimeException If the index is negative.
977 */
978 public JSONArray setLong(int index, long value) {
979 return set(index, Long.valueOf(value));
980 }
981
982
983 /**

Callers

nothing calls this directly

Calls 1

setMethod · 0.95

Tested by

no test coverage detected