Bidirectional Iterators
- Forward iterator with more motion:
// motion
Iterator& operator ++ (); // prefix increment
Iterator operator ++ (int); // postfix increment
Iterator& operator -- (); // prefix decrement
Iterator operator -- (int); // postfix decrement