MCPcopy Index your code
hub / github.com/benfry/processing4 / isEmptyArray

Method isEmptyArray

core/src/processing/data/Table.java:4191–4198  ·  view source on GitHub ↗
(String[] contents)

Source from the content-addressed store, hash-verified

4189
4190
4191 protected boolean isEmptyArray(String[] contents) {
4192 for (String entry : contents) {
4193 if (entry != null && entry.length() > 0) {
4194 return false;
4195 }
4196 }
4197 return true;
4198 }
4199
4200
4201 /*

Callers 1

trimMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected