All Classes Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
gears::concepts::Incrementable< T > Struct Template Reference

Checks if a type can be incremented. More...

Inherits gears::concepts::Or< Fundamental< T >, Pointer< T >, TraitOf< detail::is_incrementable, T > >.

Detailed Description

template<typename T>
struct gears::concepts::Incrementable< T >

A Unary concept that checks if a type can be incremented.

In order for a type to meet this concept, the following expressions has to be valid:

++x;
x++;

Where x is an instance of T.

Template Parameters
TType to check

Definition at line 739 of file basic.hpp.