Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
A struct that provides a type definition as the template parameter.
Syntax
struct identity {
typedef Type type;
Type operator()(const Type& left) const;
};
Parameters
left
The value to identify.
Remarks
The class contains the public type definition type, which is the same as the template parameter Type. It is used in conjunction with template function forward to ensure that a function parameter has the desired type.
For compatibility with older code, the class also defines the identity function operator() which returns its argument left.