MCPcopy Create free account
hub / github.com/benfry/processing4 / getLongRow

Method getLongRow

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

Source from the content-addressed store, hash-verified

3268
3269
3270 public long[] getLongRow(int row) {
3271 long[] outgoing = new long[columns.length];
3272 for (int col = 0; col < columns.length; col++) {
3273 outgoing[col] = getLong(row, col);
3274 }
3275 return outgoing;
3276 }
3277
3278
3279 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getLongMethod · 0.95

Tested by

no test coverage detected