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

Method ULLMapIter

lab07/src/ULLMap.java:108–110  ·  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

106 /** Create a new ULLMapIter by setting cur to the first node in the
107 * linked list that stores the key-value pairs. */
108 public ULLMapIter() {
109 cur = list;
110 }
111
112 @Override
113 public boolean hasNext() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected