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 the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext
insert(Range const &)

Insert a range of values to the index.

Synopsis
template<typename Range>
void insert(Range const & rng)
Parameter(s)

Type

Name

Description

Range const &

rng

The range of values.

Throws
[Warning] Warning

This operation only guarantees that there will be no memory leaks. After an exception is thrown the R-tree may be left in an inconsistent state, elements must not be inserted or removed. Other operations are allowed however some of them may return invalid data.


PrevUpHomeNext