CGAL 5.1 - STL Extensions for CGAL
|
#include <CGAL/iterator.h>
The output iterator Insert_iterator
is similar to std::insert_iterator
, but differs in that it calls the insert()
function of the container without the iterator additional argument.
OutputIterator
Container | provides a member function insert(const Container::const_reference&) . |
Related Functions | |
(Note that these are not member functions.) | |
template<class Container > | |
Insert_iterator< Container > | inserter (Container &c) |
Constructs Insert_iterator<Container>(x) . More... | |
Creation | |
Insert_iterator (Container &c) | |
initializes the internal container reference to c . More... | |
CGAL::Insert_iterator< Container >::Insert_iterator | ( | Container & | c | ) |
initializes the internal container reference to c
.
|
related |
Constructs Insert_iterator<Container>(x)
.