Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/processing/processing
/ isEmptyArray
Method
isEmptyArray
core/src/processing/data/Table.java:4092–4099 ·
view source on GitHub ↗
(String[] contents)
Source
from the content-addressed store, hash-verified
4090
4091
4092
protected
boolean isEmptyArray(String[] contents) {
4093
for
(String entry : contents) {
4094
if
(entry != null && entry.length() > 0) {
4095
return
false;
4096
}
4097
}
4098
return
true;
4099
}
4100
4101
4102
/*
Callers
1
trim
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected