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

Method getDoubleColumn

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

Source from the content-addressed store, hash-verified

3377
3378
3379 public double[] getDoubleColumn(String name) {
3380 int col = getColumnIndex(name);
3381 return (col == -1) ? null : getDoubleColumn(col);
3382 }
3383
3384
3385 public double[] getDoubleColumn(int col) {

Callers

nothing calls this directly

Calls 2

getColumnIndexMethod · 0.95
getDoubleMethod · 0.95

Tested by

no test coverage detected