Класс is_function
Проверяет, является ли данный тип типом функции.
Синтаксис
template <class Ty>
struct is_function;
Параметры
Ty
Запрашиваемый тип.
Замечания
Экземпляр предиката типа имеет значение true, если тип Ty является типом функции, в противном случае он содержит значение false.
Пример
// std__type_traits__is_function.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
struct trivial
{
int val;
};
struct functional
{
int f();
};
int main()
{
std::cout << "is_function<trivial> == " << std::boolalpha
<< std::is_function<trivial>::value << std::endl;
std::cout << "is_function<functional> == " << std::boolalpha
<< std::is_function<functional>::value << std::endl;
std::cout << "is_function<float()> == " << std::boolalpha
<< std::is_function<float()>::value << std::endl;
return (0);
}
is_function<trivial> == false
is_function<functional> == false
is_function<float()> == true
Требования
Заголовок:<type_traits>
Пространство имен: std