| 220 | /// \endcode |
| 221 | template<class F, class... Args> |
| 222 | inline detail::bound_function<F, boost::tuple<Args...> > |
| 223 | bind(F f, Args... args) |
| 224 | { |
| 225 | typedef typename boost::tuple<Args...> ArgsTuple; |
| 226 | |
| 227 | return detail::bound_function<F, ArgsTuple>(f, boost::make_tuple(args...)); |
| 228 | } |
| 229 | #else |
| 230 | template<class F, class A1> |
| 231 | inline detail::bound_function<F, boost::tuple<A1> > |
no outgoing calls