Type traits | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compile-time rational arithmetic | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Compile-time integer sequences | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(C++14) |
Defined in header <type_traits> | ||
template<class T> struct is_function; | (since C++11) | |
std::is_function
is aUnaryTypeTrait.
Checks whetherT
is a function type. Types likestd::function, lambdas, classes with overloadedoperator()
and pointers to functions don't count as function types. Provides the member constantvalue
which is equal totrue, ifT
is a function type. Otherwise,value
is equal tofalse.
If the program adds specializations forstd::is_function
orstd::is_function_v
, the behavior is undefined.
Contents |
T | - | a type to check |
template<class T> constexprbool is_function_v= is_function<T>::value; | (since C++17) | |
value [static] | true ifT is a function type,false otherwise(public static member constant) |
operator bool | converts the object tobool, returnsvalue (public member function) |
operator() (C++14) | returnsvalue (public member function) |
Type | Definition |
value_type | bool |
type | std::integral_constant<bool, value> |
std::is_function
can be implemented in much simpler ways. Implementations similar to the following one are used by new versions oflibc++,libstdc++ andMS STL:
template<class T>struct is_function:std::integral_constant<bool,!std::is_const<const T>::value&&!std::is_reference<T>::value>{};
The implementation shown below is for pedagogical purposes, since it exhibits the myriad kinds of function types.
// primary templatetemplate<class>struct is_function:std::false_type{}; // specialization for regular functionstemplate<class Ret,class...Args>struct is_function<Ret(Args...)>:std::true_type{}; // specialization for variadic functions such as std::printftemplate<class Ret,class...Args>struct is_function<Ret(Args......)>:std::true_type{}; // specialization for function types that have cv-qualifierstemplate<class Ret,class...Args>struct is_function<Ret(Args...)const>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)volatile>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constvolatile>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)const>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)volatile>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constvolatile>:std::true_type{}; // specialization for function types that have ref-qualifierstemplate<class Ret,class...Args>struct is_function<Ret(Args...)&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)const&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)volatile&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constvolatile&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)const&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)volatile&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constvolatile&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)const&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)volatile&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constvolatile&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)const&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)volatile&&>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constvolatile&&>:std::true_type{}; // specializations for noexcept versions of all the above (C++17 and later)template<class Ret,class...Args>struct is_function<Ret(Args...)noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constnoexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)volatilenoexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constvolatilenoexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constnoexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)volatilenoexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constvolatilenoexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)const&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)volatile&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constvolatile&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)const&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)volatile&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constvolatile&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)const&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)volatile&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args...)constvolatile&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)const&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)volatile&&noexcept>:std::true_type{};template<class Ret,class...Args>struct is_function<Ret(Args......)constvolatile&&noexcept>:std::true_type{}; |
#include <functional>#include <type_traits> int f();static_assert(std::is_function_v<decltype(f)>); static_assert(std::is_function_v<int(int)>);static_assert(!std::is_function_v<int>);static_assert(!std::is_function_v<decltype([]{})>);static_assert(!std::is_function_v<std::function<void()>>); struct O{void operator()(){}};static_assert(std::is_function_v<O()>); struct A{staticint foo();int fun()const&;};static_assert(!std::is_function_v<A>);static_assert(std::is_function_v<decltype(A::foo)>);static_assert(!std::is_function_v<decltype(&A::fun)>); template<typename>struct PM_traits{};template<class T,class U>struct PM_traits<U T::*>{using member_type= U;}; int main(){using T= PM_traits<decltype(&A::fun)>::member_type;// T is int() const& static_assert(std::is_function_v<T>);}
checks if a type can be invoked (as if bystd::invoke) with the given argument types (class template)[edit] | |
(C++11) | checks if a type is an object type (class template)[edit] |
(C++11) | checks if a type is a non-union class type (class template)[edit] |