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

Method setDouble

core/src/processing/data/JSONArray.java:1016–1018  ·  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

1014 * not finite.
1015 */
1016 public JSONArray setDouble(int index, double value) {
1017 return set(index, Double.valueOf(value));
1018 }
1019
1020
1021 /**

Callers 1

setFloatMethod · 0.95

Calls 1

setMethod · 0.95

Tested by

no test coverage detected