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

Method next

core/src/processing/data/DoubleDict.java:212–216  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

210 }
211
212 public Entry next() {
213 ++index;
214 Entry e = new Entry(keys[index], values[index]);
215 return e;
216 }
217
218 public boolean hasNext() {
219 return index+1 < size();

Callers

nothing calls this directly

Calls 2

keyMethod · 0.95
valueMethod · 0.95

Tested by

no test coverage detected