Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/processing/processing
/ getIntColumn
Method
getIntColumn
core/src/processing/data/Table.java:3125–3128 ·
view source on GitHub ↗
(String name)
Source
from the content-addressed store, hash-verified
3123
3124
3125
public
int
[] getIntColumn(String name) {
3126
int
col = getColumnIndex(name);
3127
return
(col == -1) ? null : getIntColumn(col);
3128
}
3129
3130
3131
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