/
usr
/
include
/
boost
/
phoenix
/
operator
/
detail
/
cpp03
/
preprocessed
/
/usr/include/boost/phoenix/operator/detail/cpp03/preprocessed
mkdir
upload
Name
Size
Mode
Actions
mem_fun_ptr_eval.hpp
1136
0644
edit
dl
rm
mem_fun_ptr_eval_10.hpp
12959
0644
edit
dl
rm
mem_fun_ptr_eval_20.hpp
39159
0644
edit
dl
rm
mem_fun_ptr_eval_30.hpp
78759
0644
edit
dl
rm
mem_fun_ptr_eval_40.hpp
131759
0644
edit
dl
rm
mem_fun_ptr_eval_50.hpp
198159
0644
edit
dl
rm
mem_fun_ptr_eval_result_of.hpp
1206
0644
edit
dl
rm
mem_fun_ptr_eval_result_of_10.hpp
9590
0644
edit
dl
rm
mem_fun_ptr_eval_result_of_20.hpp
31150
0644
edit
dl
rm
mem_fun_ptr_eval_result_of_30.hpp
64910
0644
edit
dl
rm
mem_fun_ptr_eval_result_of_40.hpp
110870
0644
edit
dl
rm
mem_fun_ptr_eval_result_of_50.hpp
169030
0644
edit
dl
rm
mem_fun_ptr_expr.hpp
1136
0644
edit
dl
rm
mem_fun_ptr_expr_10.hpp
8683
0644
edit
dl
rm
mem_fun_ptr_expr_20.hpp
25653
0644
edit
dl
rm
mem_fun_ptr_expr_30.hpp
52423
0644
edit
dl
rm
mem_fun_ptr_expr_40.hpp
88993
0644
edit
dl
rm
mem_fun_ptr_expr_50.hpp
135363
0644
edit
dl
rm
mem_fun_ptr_gen.hpp
1128
0644
edit
dl
rm
mem_fun_ptr_gen_10.hpp
7490
0644
edit
dl
rm
mem_fun_ptr_gen_20.hpp
18300
0644
edit
dl
rm
mem_fun_ptr_gen_30.hpp
34110
0644
edit
dl
rm
mem_fun_ptr_gen_40.hpp
54920
0644
edit
dl
rm
mem_fun_ptr_gen_50.hpp
80730
0644
edit
dl
rm
Edit:
/usr/include/boost/phoenix/operator/detail/cpp03/preprocessed/mem_fun_ptr_eval_10.hpp
(12959B)
/*============================================================================== Copyright (c) 2005-2010 Joel de Guzman Copyright (c) 2010 Thomas Heller Copyright (c) 2016 Kohei Takahashi 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 A0 , typename A1, typename Context> struct result<This(A0 , A1, Context)> : result<This(A0 const& , A1 const&, Context)> {}; template <typename This, typename A0 , typename A1, typename Context> struct result<This(A0 & , A1 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1> {}; template <typename A0 , typename A1, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1>::type operator()( A0 const& a0 , A1 const& a1 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( ); } template <typename This, typename A0 , typename A1 , typename A2, typename Context> struct result<This(A0 , A1 , A2, Context)> : result<This(A0 const& , A1 const& , A2 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2, typename Context> struct result<This(A0 & , A1 & , A2 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2> {}; template <typename A0 , typename A1 , typename A2, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3, typename Context> struct result<This(A0 , A1 , A2 , A3, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3> {}; template <typename A0 , typename A1 , typename A2 , typename A3, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4, typename Context> struct result<This(A0 , A1 , A2 , A3 , A4, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const& , A4 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 & , A4 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4> {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) , boost::phoenix::eval(a4, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5, typename Context> struct result<This(A0 , A1 , A2 , A3 , A4 , A5, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 & , A4 & , A5 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5> {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) , boost::phoenix::eval(a4, ctx) , boost::phoenix::eval(a5, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6, typename Context> struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6> {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) , boost::phoenix::eval(a4, ctx) , boost::phoenix::eval(a5, ctx) , boost::phoenix::eval(a6, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7, typename Context> struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) , boost::phoenix::eval(a4, ctx) , boost::phoenix::eval(a5, ctx) , boost::phoenix::eval(a6, ctx) , boost::phoenix::eval(a7, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8, typename Context> struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 & , A8 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) , boost::phoenix::eval(a4, ctx) , boost::phoenix::eval(a5, ctx) , boost::phoenix::eval(a6, ctx) , boost::phoenix::eval(a7, ctx) , boost::phoenix::eval(a8, ctx) ); } template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9, typename Context> struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9, Context)> : result<This(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const&, Context)> {}; template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9, typename Context> struct result<This(A0 & , A1 & , A2 & , A3 & , A4 & , A5 & , A6 & , A7 & , A8 & , A9 &, Context)> : result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> {}; template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9, typename Context> typename result_of::mem_fun_ptr_eval<Context, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9>::type operator()( A0 const& a0 , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 , A7 const& a7 , A8 const& a8 , A9 const& a9 , Context const & ctx ) const { return ( get_pointer(boost::phoenix::eval(a0, ctx)) ->*boost::phoenix::eval(a1, ctx) )( boost::phoenix::eval(a2, ctx) , boost::phoenix::eval(a3, ctx) , boost::phoenix::eval(a4, ctx) , boost::phoenix::eval(a5, ctx) , boost::phoenix::eval(a6, ctx) , boost::phoenix::eval(a7, ctx) , boost::phoenix::eval(a8, ctx) , boost::phoenix::eval(a9, ctx) ); }
Save
cmd:
run