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(rtree<...> &, Range const &)

Insert a range of values to the index.

Description

It calls rtree::insert(Range const&).

Synopsis
template<typename Value,
         typename Parameters,
         typename IndexableGetter,
         typename EqualTo,
         typename Allocator,
         typename Range>
void boost::geometry::index::insert(rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator > & tree, Range const & rng)
Parameter(s)

Type

Name

Description

rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator > &

tree

The spatial index.

Range const &

rng

The range of values.


PrevUpHomeNext