Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2022. The current version is 1.90.0.
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.