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

Method getIntRow

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

Source from the content-addressed store, hash-verified

3138
3139
3140 public int[] getIntRow(int row) {
3141 int[] outgoing = new int[columns.length];
3142 for (int col = 0; col < columns.length; col++) {
3143 outgoing[col] = getInt(row, col);
3144 }
3145 return outgoing;
3146 }
3147
3148
3149 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getIntMethod · 0.95

Tested by

no test coverage detected