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

Method get

core/src/processing/data/IntDict.java:352–358  ·  view source on GitHub ↗

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

(String key)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected