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

Method setDouble

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

Put or replace a double 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 double value. @return this. @throws RuntimeException If the index is negative or if the value is not fini

(int index, double value)

Source from the content-addressed store, hash-verified

935 * not finite.
936 */
937 public JSONArray setDouble(int index, double value) {
938 return set(index, Double.valueOf(value));
939 }
940
941
942 /**

Callers 1

setFloatMethod · 0.95

Calls 1

setMethod · 0.95

Tested by

no test coverage detected