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

Checks if a type is a reference. More...

Inherits is_reference< T >.

Detailed Description

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

A Unary concept to check if a type is a l-value reference.

This concept delegates the work to std::is_reference<T>. A reference can be either an r-value (T&&) or l-value (T&) reference.

Template Parameters
TType to check.

Definition at line 507 of file basic.hpp.