()
| 283 | } |
| 284 | |
| 285 | @Override |
| 286 | public Iterator<Entry> iterator() { |
| 287 | return new Iter(first); |
| 288 | } |
| 289 | |
| 290 | // The iterator for this class works directly on the linked list so that it implements |
| 291 | // the specified iteration behavior, which is very different from Java. |