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

Method next

src/jvm/clojure/lang/RecordIterator.java:40–48  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

38 }
39
40 public Object next() {
41 if (i < basecnt) {
42 Object k = basefields.nth(i);
43 i++;
44 return MapEntry.create(k, rec.valAt(k));
45 } else {
46 return extmap.next();
47 }
48 }
49
50 public void remove() {
51 throw new UnsupportedOperationException();

Callers

nothing calls this directly

Calls 4

createMethod · 0.95
nthMethod · 0.65
valAtMethod · 0.65
nextMethod · 0.65

Tested by

no test coverage detected