TBD doc
Declared in <bdlat_arrayiterators.h>
template<class TYPE>
class BackInsertIterator;
| Name | Description |
|---|---|
difference_type | Difference type is unused for this output iterator. |
iterator_category | Iterator category tag for this output iterator. |
pointer | Pointer type is unused for this output iterator. |
reference | Reference type is unused for this output iterator. |
value_type | Element type of the array being written to. |
| Name | Description |
|---|---|
BackInsertIterator [constructor] | Constructors |
operator= | Assignment operators |
operator* | Do nothing and return a reference to this modifiable iterator. This function is used in generic algorithms that use the expression *i++ = v or *++i = v. |
operator++ | Increment operators |
| Name | Description |
|---|---|
backInserter | Return a BackInsertIterator (of the appropriate type) to manipulate the specified array. Specializations of this function might return a different back-inserter type. |