()
| 95 | |
| 96 | // return an iterator over items in order from front to back |
| 97 | public Iterator<Item> iterator() { |
| 98 | return new DequeIterator(first); |
| 99 | } |
| 100 | |
| 101 | private class DequeIterator implements Iterator<Item> { |
| 102 | private Node current; |
nothing calls this directly
no outgoing calls
no test coverage detected