#include <CGAL/iterator.h>
Insert_iterator<Container> i ( Container &c); | |
initializes
the internal container reference to c.
|
There is also a global function similar to std::inserter:
template < class Container > | ||
Insert_iterator<Container> | inserter ( Container &x) | Constructs Insert_iterator<Container>(x). |