Metafunction providing the referenced type of the specified TYPE.
Declared in <bsls_util.h>
template<class TYPE>
struct Util_RemoveReference;
| Name | Description |
|---|---|
type | Alias of TYPE with reference qualifiers removed. |
| Name | Description |
|---|---|
Util_RemoveReference<TYPE&> | Partial specialization of Util_RemoveReference for lvalue references. |
Util_RemoveReference<TYPE&&> | Partial specialization of Util_RemoveReference for rvalue references. |