Create a new ULLMapIter by setting cur to the first node in the linked list that stores the key-value pairs.
()
| 124 | * linked list that stores the key-value pairs. |
| 125 | */ |
| 126 | ULLMapIter() { |
| 127 | cur = list; |
| 128 | } |
| 129 | |
| 130 | @Override |
| 131 | public boolean hasNext() { |
nothing calls this directly
no outgoing calls
no test coverage detected