BDE 4.14.0 Production release
|
Provide a compile-time check for member function pointer types.
This component defines a meta-function, bsl::is_member_function_pointer
and a template variable bsl::is_member_function_pointer_v
, that represents the result value of the bsl::is_member_function_pointer
meta-function, that may be used to query whether a type is a pointer to non-static member function type.
bsl::is_member_function_pointer
meets the requirements of the is_member_function_pointer
template defined in the C++11 standard [meta.unary.cat].
Note that, in order to support the widest range of compilers, this component depends on bslmf_memberfunctionpointertraits, which does not support member functions with C-style (varargs) elipses. Thus, bsl::is_member_function_pointer
will return a false negative if invoked on a pointer to such a member.
Note that the template variable is_member_function_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_member_function_pointer_v
is defined as an inline constexpr bool
variable. Otherwise, if the compiler supports the variable templates C++14 compiler feature, bsl::is_member_function_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 set of types are pointers to non-static member function types.
First, we create a user-defined type MyStruct
:
Now, we create two typedef
s – a function pointer type and a member function pointer type:
Finally, we instantiate the bsl::is_member_function_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_member_function_pointer_v
variable as follows: