0.12.0
Freundlich's C++ toolkit
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Public Types
fcppt::mpl::inner< Type > Struct Template Reference

Detailed Description

template<typename Type>
struct fcppt::mpl::inner< Type >

Extracts the inner type of a type.

Extracts the type contained withing Type. The result is the same type as typename Type::type.

struct func
{
typedef int type;
};
typedef
func
result;
boost::is_same<
result,
int
>::value
));
Template Parameters
TypeCan be any type containing a type typedef
Returns
The inner type

Public Types

typedef Type::type type
 

Member Typedef Documentation

template<typename Type >
typedef Type::type fcppt::mpl::inner< Type >::type