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

Method getFloatColumn

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

Source from the content-addressed store, hash-verified

3302
3303
3304 public float[] getFloatColumn(String name) {
3305 int col = getColumnIndex(name);
3306 return (col == -1) ? null : getFloatColumn(col);
3307 }
3308
3309
3310 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