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 an older version of Boost and was released in 2013. The current version is 1.91.0.
The function object extracting Indexable from Value.
It translates Value object to Indexable object. The default version handles Values which are Indexables. This template is also specialized for std::pair<Indexable, T2> and boost::tuple<Indexable, ...>.
#include <boost/geometry/index/indexable.hpp>
template<typename Value>struct indexable{// ...};
|
Parameter |
Description |
|---|---|
|
|
The Value type which may be translated directly to the Indexable. |
|
Modifier |
Function |
Description |
|---|---|---|
|
|
Return indexable extracted from the value. |
Return indexable extracted from the value.
result_typeoperator()(Value const &v)
const
|
Type |
Name |
Description |
|---|---|---|
|
|
|
The value. |
The indexable.