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

Method findRowIterator

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

@brief Finds multiple rows that contain the given value @param value the value to match @param column ID number of the column to search

(String value, int column)

Source from the content-addressed store, hash-verified

3744 * @param column ID number of the column to search
3745 */
3746 public Iterator<TableRow> findRowIterator(String value, int column) {
3747 return new RowIndexIterator(this, findRowIndices(value, column));
3748 }
3749
3750
3751 /**

Callers 1

iteratorMethod · 0.95

Calls 2

findRowIndicesMethod · 0.95
getColumnIndexMethod · 0.95

Tested by

no test coverage detected