MCPcopy 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

getIntListMethod · 0.95
getIntDictMethod · 0.95

Calls 2

getColumnIndexMethod · 0.95
getIntMethod · 0.95

Tested by

no test coverage detected