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

Method getIntRow

core/src/processing/data/Table.java:3195–3201  ·  view source on GitHub ↗
(int row)

Source from the content-addressed store, hash-verified

3193
3194
3195 public int[] getIntRow(int row) {
3196 int[] outgoing = new int[columns.length];
3197 for (int col = 0; col < columns.length; col++) {
3198 outgoing[col] = getInt(row, col);
3199 }
3200 return outgoing;
3201 }
3202
3203
3204 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getIntMethod · 0.95

Tested by

no test coverage detected