Deque<>::Iterator Implementation Plan
- Public Interface
- Start with public interface of fsu::List<T>::Iterator
- Add bracket operator
- Add "pointer arithmetic"
- Protected Data
- Pointer to a specific Deque<T> object
(the deque into which the iterator points)
- A deque index value
(the actual element to which the iterator points)
|