Create a new ULLMapIter by setting cur to the first node in the linked list that stores the key-value pairs.
()
| 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() { |
nothing calls this directly
no outgoing calls
no test coverage detected