is_bind_expression-Klasse
Testet, ob der Typ durch Aufrufen von bind
generiert wurde.
Syntax
template<class Ty>
struct is_bind_expression {
static const bool value;
};
Hinweise
Der konstante Member value
ist TRUE, wenn der Typ Ty
ein Typ ist, der durch einen Aufruf von bind
zurückgegeben wurde; andernfalls ist er FALSE.
Beispiel
// std__functional__is_bind_expression.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
void square(double x)
{
std::cout << x << "^2 == " << x * x << std::endl;
}
template<class Expr>
void test_for_bind(const Expr&)
{
std::cout << std::is_bind_expression<Expr>::value << std::endl;
}
int main()
{
test_for_bind(3.0 * 3.0);
test_for_bind(std::bind(square, 3));
return (0);
}
0
1