#include <stl_iterator.h>
Inheritance diagram for std::back_insert_iterator:


| Public Types | |
| typedef _Container | container_type | 
| A nested typedef for the type of whatever container you used. More... | |
| Public Methods | |
| back_insert_iterator (_Container &__x) | |
| The only way to create this iterator is with a container. More... | |
| back_insert_iterator & | operator= (typename _Container::const_reference __value) | 
| back_insert_iterator & | operator * () | 
| Simply returns *this. More... | |
| back_insert_iterator & | operator++ () | 
| Simply returns *this. (This iterator does not "move".). More... | |
| back_insert_iterator | operator++ (int) | 
| Simply returns *this. (This iterator does not "move".). More... | |
Tip: Using the back_inserter function to create these iterators can save typing.
Definition at line 328 of file stl_iterator.h.
| 
 | |||||
| A nested typedef for the type of whatever container you used. 
 Definition at line 336 of file stl_iterator.h. | 
| 
 | ||||||||||
| The only way to create this iterator is with a container. 
 Definition at line 340 of file stl_iterator.h. | 
| 
 | |||||||||
| Simply returns *this. 
 Definition at line 362 of file stl_iterator.h. | 
| 
 | ||||||||||
| Simply returns *this. (This iterator does not "move".). 
 Definition at line 370 of file stl_iterator.h. | 
| 
 | |||||||||
| Simply returns *this. (This iterator does not "move".). 
 Definition at line 366 of file stl_iterator.h. | 
| 
 | ||||||||||
| 
 
 
 Definition at line 354 of file stl_iterator.h. | 
 1.2.15
1.2.15