/
usr
/
include
/
boost
/
phoenix
/
core
/
detail
/
cpp03
/
preprocessed
/
/usr/include/boost/phoenix/core/detail/cpp03/preprocessed
mkdir
upload
Name
Size
Mode
Actions
actor_operator.hpp
1101
0644
edit
dl
rm
actor_operator_10.hpp
32805
0644
edit
dl
rm
actor_operator_20.hpp
92330
0644
edit
dl
rm
actor_operator_30.hpp
180955
0644
edit
dl
rm
actor_operator_40.hpp
298680
0644
edit
dl
rm
actor_operator_50.hpp
445505
0644
edit
dl
rm
actor_result_of.hpp
1108
0644
edit
dl
rm
actor_result_of_10.hpp
7765
0644
edit
dl
rm
actor_result_of_20.hpp
17150
0644
edit
dl
rm
actor_result_of_30.hpp
29235
0644
edit
dl
rm
actor_result_of_40.hpp
44020
0644
edit
dl
rm
actor_result_of_50.hpp
61505
0644
edit
dl
rm
argument.hpp
1864
0644
edit
dl
rm
argument_no_predefined_10.hpp
3363
0644
edit
dl
rm
argument_no_predefined_20.hpp
6283
0644
edit
dl
rm
argument_no_predefined_30.hpp
9203
0644
edit
dl
rm
argument_no_predefined_40.hpp
12123
0644
edit
dl
rm
argument_no_predefined_50.hpp
15043
0644
edit
dl
rm
argument_predefined_10.hpp
6323
0644
edit
dl
rm
argument_predefined_20.hpp
12243
0644
edit
dl
rm
argument_predefined_30.hpp
18163
0644
edit
dl
rm
argument_predefined_40.hpp
24083
0644
edit
dl
rm
argument_predefined_50.hpp
30003
0644
edit
dl
rm
call.hpp
1031
0644
edit
dl
rm
call_10.hpp
14659
0644
edit
dl
rm
call_20.hpp
38244
0644
edit
dl
rm
call_30.hpp
71329
0644
edit
dl
rm
call_40.hpp
113914
0644
edit
dl
rm
call_50.hpp
165999
0644
edit
dl
rm
expression.hpp
1073
0644
edit
dl
rm
expression_10.hpp
21242
0644
edit
dl
rm
expression_20.hpp
60477
0644
edit
dl
rm
expression_30.hpp
118812
0644
edit
dl
rm
expression_40.hpp
196247
0644
edit
dl
rm
expression_50.hpp
292782
0644
edit
dl
rm
function_eval.hpp
1126
0644
edit
dl
rm
function_eval_10.hpp
28458
0644
edit
dl
rm
function_eval_20.hpp
94448
0644
edit
dl
rm
function_eval_30.hpp
197838
0644
edit
dl
rm
function_eval_40.hpp
338628
0644
edit
dl
rm
function_eval_50.hpp
516818
0644
edit
dl
rm
function_eval_expr.hpp
1156
0644
edit
dl
rm
function_eval_expr_10.hpp
7739
0644
edit
dl
rm
function_eval_expr_20.hpp
23876
0644
edit
dl
rm
function_eval_expr_30.hpp
49806
0644
edit
dl
rm
function_eval_expr_40.hpp
85536
0644
edit
dl
rm
function_eval_expr_50.hpp
131066
0644
edit
dl
rm
Edit:
/usr/include/boost/phoenix/core/detail/cpp03/preprocessed/function_eval_10.hpp
(28458B)
/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ template < typename This , typename F , typename A0 , typename Context > struct result<This(F, A0, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::result_of<fn(a0)>::type type; }; template <typename F, typename A0, typename Context> typename result< function_eval( F const & , A0 & , Context const & ) >::type operator()(F const & f, A0 & a0, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx))); } template <typename F, typename A0, typename Context> typename result< function_eval( F & , A0 & , Context const & ) >::type operator()(F & f, A0 & a0, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename Context > struct result<This(F, A0 , A1, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::result_of<fn(a0 , a1)>::type type; }; template <typename F, typename A0 , typename A1, typename Context> typename result< function_eval( F const & , A0 & , A1 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx))); } template <typename F, typename A0 , typename A1, typename Context> typename result< function_eval( F & , A0 & , A1 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename Context > struct result<This(F, A0 , A1 , A2, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::result_of<fn(a0 , a1 , a2)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx))); } template <typename F, typename A0 , typename A1 , typename A2, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename A3 , typename Context > struct result<This(F, A0 , A1 , A2 , A3, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A3 , Context ) >::type >::type >::type a3; typedef typename boost::result_of<fn(a0 , a1 , a2 , a3)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2 , typename A3, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , A3 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx))); } template <typename F, typename A0 , typename A1 , typename A2 , typename A3, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , A3 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename Context > struct result<This(F, A0 , A1 , A2 , A3 , A4, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A3 , Context ) >::type >::type >::type a3; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A4 , Context ) >::type >::type >::type a4; typedef typename boost::result_of<fn(a0 , a1 , a2 , a3 , a4)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , A3 & , A4 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx))); } template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , A3 & , A4 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename Context > struct result<This(F, A0 , A1 , A2 , A3 , A4 , A5, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A3 , Context ) >::type >::type >::type a3; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A4 , Context ) >::type >::type >::type a4; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A5 , Context ) >::type >::type >::type a5; typedef typename boost::result_of<fn(a0 , a1 , a2 , a3 , a4 , a5)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx))); } template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename Context > struct result<This(F, A0 , A1 , A2 , A3 , A4 , A5 , A6, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A3 , Context ) >::type >::type >::type a3; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A4 , Context ) >::type >::type >::type a4; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A5 , Context ) >::type >::type >::type a5; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A6 , Context ) >::type >::type >::type a6; typedef typename boost::result_of<fn(a0 , a1 , a2 , a3 , a4 , a5 , a6)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a6, ctx))); } template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a6, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename Context > struct result<This(F, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A3 , Context ) >::type >::type >::type a3; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A4 , Context ) >::type >::type >::type a4; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A5 , Context ) >::type >::type >::type a5; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A6 , Context ) >::type >::type >::type a6; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A7 , Context ) >::type >::type >::type a7; typedef typename boost::result_of<fn(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a6, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a7, ctx))); } template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a6, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a7, ctx))); } template < typename This , typename F , typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename Context > struct result<This(F, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8, Context)> { typedef typename remove_reference< typename boost::result_of<evaluator(F, Context)>::type >::type fn; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A0 , Context ) >::type >::type >::type a0; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A1 , Context ) >::type >::type >::type a1; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A2 , Context ) >::type >::type >::type a2; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A3 , Context ) >::type >::type >::type a3; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A4 , Context ) >::type >::type >::type a4; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A5 , Context ) >::type >::type >::type a5; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A6 , Context ) >::type >::type >::type a6; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A7 , Context ) >::type >::type >::type a7; typedef typename boost::add_reference< typename boost::add_const< typename boost::result_of< boost::phoenix::evaluator( A8 , Context ) >::type >::type >::type a8; typedef typename boost::result_of<fn(a0 , a1 , a2 , a3 , a4 , a5 , a6 , a7 , a8)>::type type; }; template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8, typename Context> typename result< function_eval( F const & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 & , A8 & , Context const & ) >::type operator()(F const & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7 , A8 & a8, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a6, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a7, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a8, ctx))); } template <typename F, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8, typename Context> typename result< function_eval( F & , A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 & , A8 & , Context const & ) >::type operator()(F & f, A0 & a0 , A1 & a1 , A2 & a2 , A3 & a3 , A4 & a4 , A5 & a5 , A6 & a6 , A7 & a7 , A8 & a8, Context const & ctx) const { return boost::phoenix::eval(f, ctx)(help_rvalue_deduction(boost::phoenix::eval(a0, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a1, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a2, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a3, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a4, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a5, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a6, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a7, ctx)) , help_rvalue_deduction(boost::phoenix::eval(a8, ctx))); }
Save
cmd:
run