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

Method ensureBounds

core/src/processing/data/Table.java:4168–4171  ·  view source on GitHub ↗

Make sure this is a legit row and column. If not, expand the table.

(int row, int col)

Source from the content-addressed store, hash-verified

4166
4167 /** Make sure this is a legit row and column. If not, expand the table. */
4168 protected void ensureBounds(int row, int col) {
4169 ensureRow(row);
4170 ensureColumn(col);
4171 }
4172
4173
4174 /** Throw an error if this row doesn't exist. */

Callers 6

setRowMethod · 0.95
setIntMethod · 0.95
setLongMethod · 0.95
setFloatMethod · 0.95
setDoubleMethod · 0.95
setStringMethod · 0.95

Calls 2

ensureRowMethod · 0.95
ensureColumnMethod · 0.95

Tested by

no test coverage detected