MCPcopy Index your code
hub / github.com/benfry/processing4 / getLongColumn

Method getLongColumn

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

Source from the content-addressed store, hash-verified

3253
3254
3255 public long[] getLongColumn(String name) {
3256 int col = getColumnIndex(name);
3257 return (col == -1) ? null : getLongColumn(col);
3258 }
3259
3260
3261 public long[] getLongColumn(int col) {

Callers

nothing calls this directly

Calls 2

getColumnIndexMethod · 0.95
getLongMethod · 0.95

Tested by

no test coverage detected