This struct template implements the is_reference meta-function defined in the C++11 standard [meta.unary.comp]to determine if the (template parameter) t_TYPE is a (lvalue or rvalue) reference type.
Declared in <bslmf_isreference.h>
template<class t_TYPE>
struct is_reference<t_TYPE&&>
: true_type
This specialization for rvalue references derives from 'bsl::true_type.
| Name | Description |
|---|---|
true_type | Metafunction representing the boolean constant true. |