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 2021. The current version is 1.89.0.
| Front Page / Iterators / Iterator Metafunctions / deref |
Dereferences an iterator.
#include <boost/mpl/deref.hpp>
| Parameter | Requirement | Description |
|---|---|---|
| Iterator | Forward Iterator | The iterator to dereference. |
For any Forward Iterators iter:
typedef deref<iter>::type t;
| Return type: | A type. |
|---|---|
| Precondition: | iter is dereferenceable. |
| Semantics: | t is identical to the element referenced by iter. If iter is a user-defined iterator, the library-provided default implementation is equivalent to typedef iter::type t; |
Amortized constant time.
typedef vector<char,short,int,long> types; typedef begin<types>::type iter; BOOST_MPL_ASSERT(( is_same< deref<iter>::type, char > ));