MCPcopy Index your code
hub / github.com/processing/processing / getLongColumn

Method getLongColumn

core/src/processing/data/Table.java:3200–3203  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

3198
3199
3200 public long[] getLongColumn(String name) {
3201 int col = getColumnIndex(name);
3202 return (col == -1) ? null : getLongColumn(col);
3203 }
3204
3205
3206 public long[] getLongColumn(int col) {

Callers

nothing calls this directly

Calls 2

getColumnIndexMethod · 0.95
getLongMethod · 0.95

Tested by

no test coverage detected