[#bsl-is_member_function_pointer-081] = xref:bsl.adoc[bsl]::is_member_function_pointer :relfileprefix: ../ :mrdocs: This `struct` template implements the `is_member_function_pointer` meta‐function defined in the C++11 standard [meta.unary.cat]to determine if the (template parameter) `t_TYPE` is a pointer to non‐static member function type. This `struct` derives from `bsl::true_type` if the `t_TYPE` is a pointer to non‐static member function type, and from `bsl::false_type` otherwise. Additional specializations are provided below to give the correct answer in all cases. == Synopsis Declared in `<bslmf_ismemberfunctionpointer.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_TYPE> struct is_member_function_pointer : xref:bsl/false_type.adoc[false_type] ---- == Base Classes [cols="1,4"] |=== | Name| Description | `xref:bsl/false_type.adoc[false_type]` | Metafunction representing the boolean constant `false`. |=== == Specializations [cols="1,4"] |=== | Name| Description | xref:bsl/is_member_function_pointer-0b.adoc[`is_member_function_pointer<t_TYPEt_CLASS::*>`] | This partial specialization for all non‐cv‐qualified pointer‐to‐member types derives from `true_type` if the specified (template parameter) `type` is a function type, and from `false_type` otherwise. | xref:bsl/is_member_function_pointer-089.adoc[`is_member_function_pointer<t_TYPE volatilet_CLASS::*>`] | This partial specialization for all `volatile`‐qualified pointer‐to‐member types derives from `true_type` if the specified (template parameter) `type` is a function type, and from `false_type` otherwise. | xref:bsl/is_member_function_pointer-0c6.adoc[`is_member_function_pointer<t_TYPE constt_CLASS::*>`] | This partial specialization for all `const`‐qualified pointer‐to‐member types derives from `true_type` if the specified (template parameter) `type` is a function type, and from `false_type` otherwise. | xref:bsl/is_member_function_pointer-0c4.adoc[`is_member_function_pointer<t_TYPE const volatilet_CLASS::*>`] | This partial specialization for all `const volatile`‐qualified pointer‐to‐member types derives from `true_type`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#