Espaços nominais
Variantes
Acções

std::pointer_to_unary_function

Da cppreference.com
< cpp‎ | utility‎ | functional

 
 
Biblioteca de utilitários
Digite apoio (basic types, RTTI, type traits)
Gerenciamento de memória dinâmica
De tratamento de erros
Utilidades do programa
Variadic funções
Data e hora
Objetos de função
(C++11)
Os operadores relacionais
Original:
Relational operators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
rel_ops::operator!=
rel_ops::operator>
rel_ops::operator<=
rel_ops::operator>=
Pares e tuplas
Original:
Pairs and tuples
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Troque, avançar e avançar
Original:
Swap, forward and move
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
 
Objetos de função


Invólucros de função
Original:
Function wrappers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
Ligar
Original:
Bind
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Invólucros de referência
Original:
Reference wrappers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)(C++11)
Invólucros operador
Original:
Operator wrappers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Negadores
Original:
Negators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Obsoleta ligantes e adaptadores
Original:
Deprecated binders and adaptors
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(obsoleta)
(obsoleta)
(obsoleta)
pointer_to_unary_function
(obsoleta)
(obsoleta)
(obsoleta)(obsoleta)(obsoleta)(obsoleta)
(obsoleta)
(obsoleta)(obsoleta)
(obsoleta)(obsoleta)
 
template<

    class Arg,
    class Result

>class pointer_to_unary_function :publicstd::unary_function<Arg, Result>;
(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.

Índice

[editar]Funções de membro

(constructor)
constructs a new pointer_to_unary_function object with the supplied function
(função pública membro)
operator()
chama a função armazenada
Original:
calls the stored function
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(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

explicit pointer_to_unary_function( Result (*f)(Arg));

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.
You can help to correct and verify the translation. Click here for instructions.

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()

Result operator()( Arg x )const;

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.
You can help to correct and verify the translation. Click here for instructions.

Return value

The value returned by the called function.

[editar]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.
You can help to correct and verify the translation. Click here for instructions.

(modelo de classe)[edit]
(obsoleta)
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.
You can help to correct and verify the translation. Click here for instructions.

(modelo de função)[edit]
close