std::reference_wrapper::operator()
De cppreference.com
< cpp | utility | functional | reference wrapper
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
template< class... ArgTypes > typename std::result_of<T&(ArgTypes&&...)>::type |
(desde C++11) | |
Llama al objeto que se puede llamar, la referencia a la que se almacena. Esta función está disponible sólo si los puntos de referencia almacenados en un objeto
Callable
.Original:
Calls the callable object, reference to which is stored. This function is available only if the stored reference points to a
Callable
object.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
args | - | argumentos que se pasan a la función llamada
Original: arguments to pass to the called function The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Valor de retorno
El valor devuelto por la función llamada .
Original:
The return value of the called function.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Excepciones
(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[editar] Ver también
accede a la referencia almacenada Original: accesses the stored reference The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (miembro público función) |