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

Method get

core/src/processing/data/DoubleDict.java:366–372  ·  view source on GitHub ↗

Return a value for the specified key. @webref doubledict:method @brief Return a value for the specified key

(String key)

Source from the content-addressed store, hash-verified

364 * @brief Return a value for the specified key
365 */
366 public double get(String key) {
367 int index = index(key);
368 if (index == -1) {
369 throw new IllegalArgumentException("No key named '" + key + "'");
370 }
371 return values[index];
372 }
373
374
375 public double get(String key, double alternate) {

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected