Notă
Accesul la această pagină necesită autorizare. Puteți încerca să vă conectați sau să modificați directoarele.
Accesul la această pagină necesită autorizare. Puteți încerca să modificați directoarele.
Tests if type is a function type.
Syntax
template <class Ty>
struct is_function;
Parameters
Ty
The type to query.
Remarks
An instance of the type predicate holds true if the type Ty is a function type, otherwise it holds false.
Example
// 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
Requirements
Header: <type_traits>
Namespace: std