◐ Shell
clean mode source ↗

std::pointer_to_binary_function - cppreference.com

De cppreference.com

Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.

La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí.

template< class Arg1, class Arg2, class Result > class pointer_to_binary_function : public std::binary_function<Arg1, Arg2, Result>;

(en desuso)

std::pointer_to_binary_function es un objeto de función que actúa como una envoltura alrededor de una función binaria .

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.

Las funciones miembro

constructs a new pointer_to_binary_function object with the supplied function
(función miembro pública)

llama a la función almacenada

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.


(función miembro pública)

std :: pointer_to_binary_function ::

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 -

puntero a una función para almacenar

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.

std :: pointer_to_binary_function ::

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 pasar a la función

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.

Ver también

(en desuso en C++11)(eliminado en C++17)

Envoltorio compatible con un adaptador para un puntero a función unaria.
(plantilla de clase) [editar]

(en desuso en C++11)(eliminado en C++17)

Crea un envoltorio de objeto función compatible con un adaptador de un puntero a función
(plantilla de función) [editar]