reference_wrapper::result_type
ラップされた参照の弱い結果型です。
typedef T0 result_type;
解説
この typedef は、ラップされた関数の弱い結果型のシノニムです。
使用例
// std_tr1__functional__reference_wrapper_result_type.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
typedef std::reference_wrapper<int (int)> Mywrapper;
Mywrapper rwi(neg);
Mywrapper::result_type val = rwi(3);
std::cout << "val = " << val << std::endl;
return (0);
}
必要条件
ヘッダー : <functional>
名前空間: std