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

Method getLongRow

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

Source from the content-addressed store, hash-verified

3213
3214
3215 public long[] getLongRow(int row) {
3216 long[] outgoing = new long[columns.length];
3217 for (int col = 0; col < columns.length; col++) {
3218 outgoing[col] = getLong(row, col);
3219 }
3220 return outgoing;
3221 }
3222
3223
3224 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getLongMethod · 0.95

Tested by

no test coverage detected