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

Method getDoubleColumn

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

Source from the content-addressed store, hash-verified

3436
3437
3438 public double[] getDoubleColumn(String name) {
3439 int col = getColumnIndex(name);
3440 return (col == -1) ? null : getDoubleColumn(col);
3441 }
3442
3443
3444 public double[] getDoubleColumn(int col) {

Callers

nothing calls this directly

Calls 2

getColumnIndexMethod · 0.95
getDoubleMethod · 0.95

Tested by

no test coverage detected