Sierra Toolkit
Version of the Day
|
#include <iterator_eastl.h>
Inherits eastl::iterator< Category, T, Distance, Pointer, Reference >.
Public Types | |
typedef Container | container_type |
typedef Container::const_reference | const_reference |
Public Member Functions | |
back_insert_iterator (Container &x) | |
back_insert_iterator & | operator= (const_reference value) |
back_insert_iterator & | operator* () |
back_insert_iterator & | operator++ () |
back_insert_iterator | operator++ (int) |
Protected Attributes | |
Container & | container |
A back_insert_iterator is simply a class that acts like an iterator but when you assign a value to it, it calls push_back on the container with the value.
Definition at line 328 of file iterator_eastl.h.