I hear that tr1::result_of gets used frequently inside of Boost... I'm wondering if there are any good (simple) use cases for tr1::result_of I can use at home.
|
|
A description of result_of is given at open_std.org. Microsoft has a quick example of a unit test wrapper that uses result_of. |
||
|
|
|
There are no simple cases. However, it's used in
|
||
|
|
|
|
It's useful when doing meta-programming. The only time I used it was in a wrapper function. If result_of<T>::type was void, the wrapper returned nothing. Otherwise it returns the whatever the wrapped function returns. |
||
|
