std::pointer_to_unary_function - cppreference.com
De cppreference.com
<metanoindex/>
<tbody> </tbody>
|
|
(obsoleta) | |
std::pointer_to_unary_function é um objeto de função que atua como um invólucro em torno de uma função unária.
Original:
std::pointer_to_unary_function is a function object that acts as a wrapper around a unary function.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Funções de membro
constructs a new pointer_to_unary_function object with the supplied function (função pública membro) | |
chama a função armazenada Original: calls the stored function The text has been machine-translated via Google Translate. (função pública membro) | |
pointer_to_unary_function std :: ::
Original:
std::pointer_to_unary_function::
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
pointer_to_unary_function
pointer_to_unary_function std :: ::
Original:
std::pointer_to_unary_function::
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
<tbody> </tbody>
|
|
||
Constructs a pointer_to_unary_function function object with the stored function f.
Parameters
| f | - | ponteiro para uma função de armazenar Original: pointer to a function to store The text has been machine-translated via Google Translate. |
pointer_to_unary_function std :: ::
Original:
std::pointer_to_unary_function::
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
operator()
pointer_to_unary_function std :: ::
Original:
std::pointer_to_unary_function::
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
<tbody> </tbody>
|
|
||
Calls the stored function.
Parameters
| x | - | argumento para passar para a função Original: argument to pass to the function The text has been machine-translated via Google Translate. |
Return value
The value returned by the called function.
Veja também
adaptador compatível com invólucro para um ponteiro para função de binário Original: adaptor-compatible wrapper for a pointer to binary function The text has been machine-translated via Google Translate. (modelo de classe) [edit] | |
cria um adaptador compatível com invólucro objeto de função de um ponteiro para função Original: creates an adaptor-compatible function object wrapper from a pointer to function The text has been machine-translated via Google Translate. (modelo de função) [edit] | |