is_placeholder Class
Prüft, ob Typ ein Platzhalter ist.
template<class Ty>
struct is_placeholder {
static const int value;
};
Hinweise
Der konstante Wert value ist 0, wenn der Typ Ty kein Platzhalter ist; andernfalls ist der Wert die Position des Funktionsaufrufarguments, auf bindet.Sie verwenden sie, um den Wert N für den n-te Platzhalter _N zu bestimmen.
Beispiel
// std_tr1__functional__is_placeholder.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
using namespace std::placeholders;
template<class Expr>
void test_for_placeholder(const Expr&)
{
std::cout << std::is_placeholder<Expr>::value << std::endl;
}
int main()
{
test_for_placeholder(3.0);
test_for_placeholder(_3);
return (0);
}
Anforderungen
Header: <functional>
Namespace: std