Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/benfry/processing4
/ getIntColumn
Method
getIntColumn
core/src/processing/data/Table.java:3180–3183 ·
view source on GitHub ↗
(String name)
Source
from the content-addressed store, hash-verified
3178
3179
3180
public
int
[] getIntColumn(String name) {
3181
int
col = getColumnIndex(name);
3182
return
(col == -1) ? null : getIntColumn(col);
3183
}
3184
3185
3186
public
int
[] getIntColumn(
int
col) {
Callers
2
getIntList
Method · 0.95
getIntDict
Method · 0.95
Calls
2
getColumnIndex
Method · 0.95
getInt
Method · 0.95
Tested by
no test coverage detected