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

Method getLongArray

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

Get this entire array as a long array. Everything must be an long.

()

Source from the content-addressed store, hash-verified

591
592 /** Get this entire array as a long array. Everything must be an long. */
593 public long[] getLongArray() {
594 long[] outgoing = new long[size()];
595 for (int i = 0; i < size(); i++) {
596 outgoing[i] = getLong(i);
597 }
598 return outgoing;
599 }
600
601
602 /** Get this entire array as a float array. Everything must be an float. */

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
getLongMethod · 0.95

Tested by

no test coverage detected