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

Method matchRowIterator

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

Finds multiple rows that match the given expression @webref table:method @webBrief Finds multiple rows that match the given expression @param value the regular expression to match @param column ID number of the column to search

(String value, int column)

Source from the content-addressed store, hash-verified

3992 * @param column ID number of the column to search
3993 */
3994 public Iterator<TableRow> matchRowIterator(String value, int column) {
3995 return new RowIndexIterator(this, matchRowIndices(value, column));
3996 }
3997
3998
3999 /**

Callers 1

iteratorMethod · 0.95

Calls 2

matchRowIndicesMethod · 0.95
getColumnIndexMethod · 0.95

Tested by

no test coverage detected