...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Front Page / Sequences / Views / single_view |
template< typename T > struct single_view { // unspecified // ... };
A view onto an arbitrary type T as on a single-element sequence.
#include <boost/mpl/single_view.hpp>
Parameter | Requirement | Description |
---|---|---|
T | Any type | The type to be wrapped in a sequence. |
The semantics of an expression are defined only where they differ from, or are not defined in Random Access Sequence.
In the following table, v is an instance of single_view, x is an arbitrary type.
Expression | Semantics |
---|---|
single_view |
A single-element Random Access Sequence v such that
front |
size |
The size of v; size |
typedef single_viewview; typedef begin ::type first; typedef end ::type last; BOOST_MPL_ASSERT(( is_same< deref ::type,int > )); BOOST_MPL_ASSERT(( is_same< next ::type,last > )); BOOST_MPL_ASSERT(( is_same< prior ::type,first > )); BOOST_MPL_ASSERT_RELATION( size ::value, ==, 1 );