New members
These members are not defined in the Output Iterator requirements, but are specific to insert_iterator.
Member |
Description |
insert_iterator(Container& C, Container::iterator i) |
Constructs an insert_iterator that inserts objects in C. If Container is a Sequence, then each object will be inserted immediately before the element pointed to by i. If C is a Sorted Associative Container, then the first insertion will use i as a hint for beginning the search. The iterator i must be a dereferenceable or past-the-end iterator in C. |
template inserter(Container& C, Iter i); |
Equivalent to insert_iterator(C, i). [2] This is a global function, not a member function. |
|