std::reference_wrapper::operator()
提供: cppreference.com
< cpp | utility | functional | reference wrapper
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
template< class... ArgTypes > typename std::result_of<T&(ArgTypes&&...)>::type |
(C++11およびそれ以降) | |
呼び出し可能オブジェクトへの参照が格納されて呼び出されます。この関数は、
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.
目次 |
[編集] パラメータ
args | - | 引数は、呼び出された関数に渡す
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. |
[編集] 値を返します
呼び出された関数の戻り値.
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.
[編集] 例外
(なし)
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.
[編集] も参照してください
格納された参照にアクセスします 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. (パブリックメンバ関数) |