#include <stl_deque.h>
Inheritance diagram for std::Deque_iterator< Type, Ref, Ptr >:
Quite a bit of intelligence here. Much of the functionality of deque is actually passed off to this class. A deque holds two of these internally, marking its valid range. Access to elements is done as offsets of either of those two, relying on operator overloading in this class.
Definition at line 100 of file stl_deque.h.