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

Method ULLMapIter

lab08/src/hashmap/ULLMap.java:126–128  ·  view source on GitHub ↗

Create a new ULLMapIter by setting cur to the first node in the linked list that stores the key-value pairs.

()

Source from the content-addressed store, hash-verified

124 * linked list that stores the key-value pairs.
125 */
126 ULLMapIter() {
127 cur = list;
128 }
129
130 @Override
131 public boolean hasNext() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected