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

Method getFloatColumn

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

Source from the content-addressed store, hash-verified

3361
3362
3363 public float[] getFloatColumn(String name) {
3364 int col = getColumnIndex(name);
3365 return (col == -1) ? null : getFloatColumn(col);
3366 }
3367
3368
3369 public float[] getFloatColumn(int col) {

Callers 2

getFloatListMethod · 0.95
getFloatDictMethod · 0.95

Calls 2

getColumnIndexMethod · 0.95
getFloatMethod · 0.95

Tested by

no test coverage detected