BDE 4.14.0 Production release
|
Macros | |
#define | bslmf_IsPointer bslmf::IsPointer |
This alias is defined for backward-compatibility. | |
Provide a compile-time check for pointer types.
bsl::is_pointer
meta-functionThis component defines two meta-functions, bsl::is_pointer
and BloombergLP::bslmf::IsPointer
and a template variable bsl::is_pointer_v
, that represents the result value of the bsl::is_pointer
meta-function. All these meta-functions may be used to query whether or not a type is a pointer type.
bsl::is_pointer
meets the requirements of the is_pointer
template defined in the C++11 standard [meta.unary.cat], while bslmf::IsPointer
was devised before is_pointer
was standardized.
The two meta-functions are functionally equivalent. The major difference between them is that the result for bsl::is_pointer
is indicated by the class member value
, while the result for bslmf::IsPointer
is indicated by the class member value
.
Note that bsl::is_pointer
should be preferred over bslmf::IsPointer
, and in general, should be used by new components.
Also note that the template variable is_pointer_v
is defined in the C++17 standard as an inline variable. If the current compiler supports the inline variable C++17 compiler feature, bsl::is_pointer_v
is defined as an inline constexpr bool
variable. Otherwise, if the compiler supports the variable templates C++14 compiler feature, bsl::is_pointer_v
is defined as a non-inline constexpr bool
variable. See BSLS_COMPILERFEATURES_SUPPORT_INLINE_VARIABLES
and BSLS_COMPILERFEATURES_SUPPORT_VARIABLE_TEMPLATES
macros in bsls_compilerfeatures component for details.
In this section we show intended use of this component.
Suppose that we want to assert whether a particular type is a pointer type.
First, we create two typedef
s – a pointer type and a non-pointer type:
Now, we instantiate the bsl::is_pointer
template for each of the typedef
s and assert the value
static data member of each instantiation:
Note that if the current compiler supports the variable templates C++14 feature then we can re-write the snippet of code above using the bsl::is_pointer_v
variable as follows:
#define bslmf_IsPointer bslmf::IsPointer |