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

Method next

core/src/processing/data/FloatDict.java:197–201  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

195 }
196
197 public Entry next() {
198 ++index;
199 Entry e = new Entry(keys[index], values[index]);
200 return e;
201 }
202
203 public boolean hasNext() {
204 return index+1 < size();

Callers

nothing calls this directly

Calls 2

keyMethod · 0.95
valueMethod · 0.95

Tested by

no test coverage detected