vote up 2 vote down star

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.

flag

71% accept rate

3 Answers

vote up 3 vote down check

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.

link|flag
From the Microsoft example, it seems that the advantage of result_of is that it adds a trait describing the returned type. Thnx! – ceretullis Oct 11 '08 at 15:51
vote up 3 vote down

There are no simple cases. However, it's used in BOOST_AUTO, which can be used, e.g., in

BOOST_AUTO(x, make_pair(a, b));
link|flag
vote up 1 vote down

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.

link|flag
just so you know, c++ allows returning void in some cases. for example: "template<class T> T func() { return T(); }" is valid even when T is void. – Evan Teran Oct 17 '08 at 18:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.