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 to view this page for the latest version.
PrevUpHomeNext
rtree(Iterator, Iterator)

The constructor.

Synopsis
template<typename Iterator>
rtree(Iterator first,
      Iterator last,
      parameters_type const & parameters = parameters_type(),
      indexable_getter const & getter = indexable_getter(),
      value_equal const & equal = value_equal(),
      allocator_type const & allocator = allocator_type())
Parameter(s)

Type

Name

Description

Iterator

first

The beginning of the range of Values.

Iterator

last

The end of the range of Values.

parameters_type const &

parameters

The parameters object.

indexable_getter const &

getter

The function object extracting Indexable from Value.

value_equal const &

equal

The function object comparing Values.

allocator_type const &

allocator

The allocator object.

Throws

PrevUpHomeNext