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

Method getBooleanArray

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

Get this entire array as a boolean array. Everything must be a boolean.

()

Source from the content-addressed store, hash-verified

621
622 /** Get this entire array as a boolean array. Everything must be a boolean. */
623 public boolean[] getBooleanArray() {
624 boolean[] outgoing = new boolean[size()];
625 for (int i = 0; i < size(); i++) {
626 outgoing[i] = getBoolean(i);
627 }
628 return outgoing;
629 }
630
631
632// /**

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
getBooleanMethod · 0.95

Tested by

no test coverage detected