...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Remove a range of values from the container.
Remove a range of values from the container. In contrast to the
or std::set
method it doesn't take iterators
pointing to values stored in this container. It removes values equal
to these passed as a range. Furthermore this function removes only one
value for each one passed in the range, not all equal values.
std::map erase()
It calls rtree::remove(Iterator,
Iterator)
.
template<
typename Value
,
typename Parameters
,
typename IndexableGetter
,
typename EqualTo
,
typename Allocator
,
typename Iterator
>
rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::size_type
remove
(
rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator > &
tree
,
Iterator
first
,
Iterator
last
)
Type |
Name |
Description |
---|---|---|
|
|
The spatial index. |
|
|
The beginning of the range of values. |
|
|
The end of the range of values. |
The number of removed values.