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

Method get

core/src/processing/data/FloatDict.java:351–357  ·  view source on GitHub ↗

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

(String key)

Source from the content-addressed store, hash-verified

349 * @brief Return a value for the specified key
350 */
351 public float get(String key) {
352 int index = index(key);
353 if (index == -1) {
354 throw new IllegalArgumentException("No key named '" + key + "'");
355 }
356 return values[index];
357 }
358
359
360 public float get(String key, float alternate) {

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected