std::reference_wrapper::operator()
Da 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) | |
Chama o objeto que pode ser chamado, a referência ao que é armazenado. Esta função só está disponível se os pontos de referência armazenados em um 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.
Índice |
[editar] Parâmetros
args | - | argumentos para passar para a função chamada
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
O valor de retorno da função chamada.
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] Exceções
(Nenhum)
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] Veja também
acessa a referência armazenada 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. (função pública membro) |