MCPcopy Create free account
hub / github.com/Berkeley-CS61B/skeleton-sp23 / next

Method next

lab07/src/ULLMap.java:117–122  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

115 }
116
117 @Override
118 public K next() {
119 K ret = cur.key;
120 cur = cur.next;
121 return ret;
122 }
123
124 /** Stores the current key-value pair. */
125 private Entry cur;

Callers 3

waitForPositiveIntMethod · 0.45
getGuessMethod · 0.45
provideArgumentsMethod · 0.45

Calls

no outgoing calls

Tested by 2

waitForPositiveIntMethod · 0.36
provideArgumentsMethod · 0.36