...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Returns insert iterator capable to insert values to the container (spatial index) which has member function insert(value_type const&) defined.
template<
typename Container
>
insert_iterator< Container >
inserter
(
Container &
c
)
Type |
Name |
Description |
---|---|---|
|
|
The reference to the container (spatial index) to which values will be inserted. |
The insert iterator inserting values to the container.