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 |
(depuis C++11) | |
Appelle l'objet appelable, la référence à ce qui est stocké. Cette fonction est disponible seulement si les points de référence stockées dans un objet
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.
Sommaire |
[modifier] Paramètres
args | - | arguments à passer à la fonction appelée
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. |
[modifier] Retourne la valeur
La valeur de retour de la fonction appelée .
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.
[modifier] Exceptions
(Aucun)
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.
[modifier] Voir aussi
accède à la référence mémorisée 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. (fonction membre publique) |