...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Returns the query iterator pointing at the end of the query range.
This method returns the iterator which may be used to check if the query has ended.
template<
typename Value
,
typename Parameters
,
typename IndexableGetter
,
typename EqualTo
,
typename Allocator
>
rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator >::const_query_iterator
qend
(
rtree< Value, Parameters, IndexableGetter, EqualTo, Allocator > const &
tree
)
The iterator pointing at the end of the query range.
for ( Rtree::const_query_iterator it = qbegin(tree, bgi::nearest(pt, 10000)) ; it != qend(tree) ; ++it ) { // do something with value if ( has_enough_nearest_values() ) break; }
Nothing