std::reference_wrapper::operator()
Da cppreference.com.
< cpp | utility | functional | reference wrapper
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
template<class... ArgTypes> typenamestd::result_of<T&(ArgTypes&&...)>::type | (dal C++11) | |
Chiama l'oggetto callable, la cui consultazione è memorizzato. Questa funzione è disponibile solo se i punti di riferimento memorizzati in un oggetto
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.
Indice |
[modifica]Parametri
args | - | argomenti da passare alla funzione chiamata 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. |
[modifica]Valore di ritorno
Il valore di ritorno della funzione chiamata.
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.
[modifica]Eccezioni
(Nessuno)
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.
[modifica]Vedi anche
accede al riferimento memorizzato 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. (metodo pubblico) |