Passing boost::any to results of boost::bind - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:43:34Z http://stackoverflow.com/feeds/question/306559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/306559/passing-boostany-to-results-of-boostbind 0 Passing boost::any to results of boost::bind Matt Cruikshank 2008-11-20T19:33:27Z 2008-11-20T21:16:02Z <p>I'm trying to figure out how to write this function:</p> <pre><code>template &lt;typename Bound&gt; Bound::result_type callFromAnyList(Bound b, list&lt;any&gt; p) { } </code></pre> <p>Then, if I had some function:</p> <pre><code>double myFunc(string s, int i) { return -3.0; } </code></pre> <p>I could call it by doing something like this:</p> <pre><code>list&lt;any&gt; p; p.push_back((string)"Hello"); p.push_back(7); double result = callFromAnyList(bind(myFunc, _1, _2), p); </code></pre> <p>Is it possible to write something like my <code>callFromAnyList</code> function? Can you inspect the result type and the parameter types from the type returned from <code>bind</code>? And then call <code>any_cast&lt;P1&gt;(*p.begin())</code>, etc? I've tried to understand the bind code, but it's a little hard to follow, and it doesn't appear as though they wrote it with inspection in mind.</p> http://stackoverflow.com/questions/306559/passing-boostany-to-results-of-boostbind/306691#306691 0 Answer by Johannes Schaub - litb for Passing boost::any to results of boost::bind Johannes Schaub - litb 2008-11-20T20:12:16Z 2008-11-20T20:12:16Z <p>As you updated your concerns in the comment sections, here the answer. Just getting the return type of a function is possible:</p> <pre><code>template&lt;typename&gt; struct return_of; template&lt;typename R&gt; struct return_of&lt;R(*)()&gt; { typedef R type; }; template&lt;typename R, typename P1&gt; struct return_of&lt;R(*)(P1)&gt; { typedef R type; typedef P1 parameter_1; }; void foo(int); template&lt;typename Func&gt; typename return_of&lt;Func&gt;::parameter_1 bar(Func f) { return 42; } // call: bar(foo); </code></pre> <p>I guess you see what this comes down to :) You can use boost function types which already has solved it: <a href="http://www.boost.org/doc/libs/1_37_0/libs/function_types/doc/html/index.html" rel="nofollow">http://www.boost.org/doc/libs/1_37_0/libs/function_types/doc/html/index.html</a></p> http://stackoverflow.com/questions/306559/passing-boostany-to-results-of-boostbind/306874#306874 0 Answer by Matt Cruikshank for Passing boost::any to results of boost::bind Matt Cruikshank 2008-11-20T21:16:02Z 2008-11-20T21:16:02Z <p>I ended up doing this for now -</p> <pre><code>void invoke(void (f)(), list&lt;any&gt;&amp; params) { f(); } template &lt;typename R&gt; void invoke(R (f)(), list&lt;any&gt;&amp; params) { params.push_front(f()); } template &lt;typename T0&gt; void invoke(void (f)(T0), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); f(t0); } template &lt;typename R, typename T0&gt; void invoke(R (f)(T0), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); params.push_front(f(t0)); } template &lt;typename T0, typename T1&gt; void invoke(void (f)(T0, T1), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); f(t0, t1); } template &lt;typename R, typename T0, typename T1&gt; void invoke(R (f)(T0, T1), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); params.push_front(f(t0, t1)); } template &lt;typename T0, typename T1, typename T2&gt; void invoke(void (f)(T0, T1, T2), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); T2 t2 = any_cast&lt;T2&gt;(*params.begin()); params.pop_front(); f(t0, t1, t2); } template &lt;typename R, typename T0, typename T1, typename T2&gt; void invoke(R (f)(T0, T1, T2), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); T2 t2 = any_cast&lt;T2&gt;(*params.begin()); params.pop_front(); params.push_front(f(t0, t1, t2)); } </code></pre> <p>I'm lacking the full power of boost::bind - like, I can't handle method pointers - but I also realized that by doing this, I've got a stack processor. I can keep invoking methods that operator on the parameters on the stack.</p>