Espaços nominais
Variantes
Acções

Diferenças entre edições de "cpp/utility/functional/pointer to binary function"

Da cppreference.com
< cpp‎ | utility‎ | functional
m (r2.7.3) (Robô: A adicionar: de, en, es, fr, it, ja, ru, zh)
m (Use {{lc}}. Update links. Various fixes.)
 
Linha 13: Linha 13:
  
 
===Funções de membro===
 
===Funções de membro===
{{dcl list begin}}
+
{{begin}}
{{dcl list mem ctor | nolink=true | constructs a new {{tt|pointer_to_binary_function}} object with the supplied function}}
+
{{mem ctor | nolink=true | constructs a new {{tt|pointer_to_binary_function}} object with the supplied function}}
{{dcl list mem fun | operator() | nolink=true |{{tr| chama a função armazenada| calls the stored function}}}}
+
{{mem fun | operator() | nolink=true |{{tr| chama a função armazenada| calls the stored function}}}}
{{dcl list end}}
+
{{end}}
  
 
{{member | {{small|{{tr|pointer_to_binary_function std :: ::|std::pointer_to_binary_function::}}}}pointer_to_binary_function | 2=
 
{{member | {{small|{{tr|pointer_to_binary_function std :: ::|std::pointer_to_binary_function::}}}}pointer_to_binary_function | 2=
Linha 26: Linha 26:
  
 
===Parameters===
 
===Parameters===
{{param list begin}}
+
{{begin}}
{{param list item | f |{{tr| ponteiro para uma função de armazenar| pointer to a function to store}}}}
+
{{| f |{{tr| ponteiro para uma função de armazenar| pointer to a function to store}}}}
{{param list end}}
+
{{end}}
  
 
}}
 
}}
Linha 40: Linha 40:
  
 
===Parameters===
 
===Parameters===
{{param list begin}}
+
{{begin}}
{{param list item | x1, x2 |{{tr| argumentos para passar para a função| arguments to pass to the function}}}}
+
{{| x1, x2 |{{tr| argumentos para passar para a função| arguments to pass to the function}}}}
{{param list end}}
+
{{end}}
  
 
===Return value===
 
===Return value===
Linha 50: Linha 50:
  
 
===Veja também===
 
===Veja também===
{{dcl list begin}}
+
{{begin}}
{{dcl list template | cpp/utility/functional/dcl list pointer_to_unary_function}}
+
{{| cpp/utility/functional/pointer_to_unary_function}}
{{dcl list template | cpp/utility/functional/dcl list ptr_fun}}
+
{{| cpp/utility/functional/ptr_fun}}
{{dcl list end}}
+
{{end}}
  
 
[[de:cpp/utility/functional/pointer to binary function]]
 
[[de:cpp/utility/functional/pointer to binary function]]

Edição actual desde as 12h39min de 2 de julho de 2013

 
 
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_binary_function
(obsoleta)
(obsoleta)
(obsoleta)(obsoleta)(obsoleta)(obsoleta)
(obsoleta)
(obsoleta)(obsoleta)
(obsoleta)(obsoleta)
 
template<

    class Arg1,
    class Arg2,
    class Result

> class pointer_to_binary_function : public std::binary_function<Arg1, Arg2, Result>;
(obsoleta)
std::pointer_to_binary_function é um objeto de função que atua como um invólucro em torno de uma função binária.
Original:
std::pointer_to_binary_function is a function object that acts as a wrapper around a binary 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_binary_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_binary_function std :: ::
Original:
std::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.
pointer_to_binary_function

explicit pointer_to_binary_function( Result (*f)(Arg1,Arg2) );

Constructs a pointer_to_binary_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_binary_function std :: ::
Original:
std::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.
operator()

Result operator()( Arg1 x1, Arg2 x2 ) const;

Calls the stored function.

Parameters

x1, x2 -
argumentos para passar para a função
Original:
arguments 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 unário
Original:
adaptor-compatible wrapper for a 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.

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