Description
The template class describes an output iterator object. It inserts elements into a container of type Cont, which it accesses via the protected pointer object it stores called container. The container must define:
- the member type const_reference, which is the type of a constant reference to an element of the sequence controlled by the container
- the member type reference, which is the type of a reference to an element of the sequence controlled by the container
- the member type value_type, which is the type of an element of the sequence controlled by the container
- the member function push_back(value_type c), which appends a new element with value c to the end of the sequence