MCPcopy 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

getIntListMethod · 0.95
getIntDictMethod · 0.95

Calls 2

getColumnIndexMethod · 0.95
getIntMethod · 0.95

Tested by

no test coverage detected