My Project
include
bsl
is_function.hpp
Go to the documentation of this file.
1
28
#ifndef BSL_IS_FUNCTION_HPP
29
#define BSL_IS_FUNCTION_HPP
30
31
#include "
bool_constant.hpp
"
32
#include "
is_const.hpp
"
33
#include "
is_reference.hpp
"
34
35
namespace
bsl
36
{
48
template
<
typename
T>
49
class
is_function
final :
// --
50
public
bool_constant
<(!is_const<T const>::value) && (!is_reference<T>::value)>
51
{};
52
}
53
54
#endif
bsl::integral_constant
If the provided type is an array type (taking into account const qualifications), provides the member...
Definition:
integral_constant.hpp:45
bsl::is_function
If the provided type is a function type, provides the member constant value equal to true....
Definition:
is_function.hpp:49
is_reference.hpp
is_const.hpp
bool_constant.hpp
Generated by
1.8.15