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

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

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

Detailed Description

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

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

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 759 of file basic.hpp.