Checks if a type is a reference. More...
Inherits is_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.
| T | Type to check. |