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

Method iterator

core/src/processing/data/Table.java:2674–2681  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2672 public Iterable<TableRow> rows() {
2673 return new Iterable<TableRow>() {
2674 public Iterator<TableRow> iterator() {
2675 if (rowIterator == null) {
2676 rowIterator = new RowIterator(Table.this);
2677 } else {
2678 rowIterator.reset();
2679 }
2680 return rowIterator;
2681 }
2682 };
2683 }
2684

Callers 5

JSONObjectMethod · 0.45
keyIteratorMethod · 0.45
clearBreakpointsMethod · 0.45

Calls 3

findRowIteratorMethod · 0.95
matchRowIteratorMethod · 0.95
resetMethod · 0.65

Tested by

no test coverage detected