blob: 5f485ea7a827695fcba4325a37bb31611a1d2862 [file] [log] [blame]
Brian Silverman4a2409e2018-08-04 23:24:02 -07001[/
2 Copyright 2007 John Maddock.
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt).
6]
7
8[section:is_member_function_pointer is_member_function_pointer]
9 template <class T>
10 struct is_member_function_pointer : public __tof {};
11
12__inherit If T is a (possibly cv-qualified) pointer to a member function
13then inherits from __true_type,
14otherwise inherits from __false_type.
15
16__std_ref 3.9.2 and 8.3.3.
17
18[all_compilers]
19
20__header ` #include <boost/type_traits/is_member_function_pointer.hpp>` or ` #include <boost/type_traits.hpp>`
21
22__examples
23
24[:`is_member_function_pointer<int (MyClass::*)(void)>` inherits from `__true_type`.]
25
26[:`is_member_function_pointer<int (MyClass::*)(char)>::type` is the type `__true_type`.]
27
28[:`is_member_function_pointer<int (MyClass::*)(void)const>::value` is an integral constant
29expression that evaluates to /true/.]
30
31[:`is_member_function_pointer<int (MyClass::*)>::value` is an integral constant
32expression that evaluates to /false/: the argument in this case is a pointer to
33a data member and not a member function, see __is_member_object_pointer
34and __is_member_pointer]
35
36[:`is_member_function_pointer<T>::value_type` is the type `bool`.]
37
38[endsect]
39