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.
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.