635 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			635 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | /*============================================================================== | ||
|  |     Copyright (c) 2005-2010 Joel de Guzman | ||
|  |     Copyright (c) 2010 Thomas Heller | ||
|  | 
 | ||
|  |     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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , A1 const& a1 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         boost::phoenix::eval(a1, ctx) | ||
|  |                 ); | ||
|  |         } | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |         template <typename This, typename A0 , typename A1 , typename A2, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , A1 const& a1 , A2 const& a2 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , A1 const& a1 , A2 const& a2 , A3 const& a3 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , A1 const& a1 , A2 const& a2 , A3 const& a3 , A4 const& a4 , A5 const& a5 , A6 const& a6 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         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<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) | ||
|  |                 ); | ||
|  |         } | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |         template <typename This, typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, 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 A10 , typename A11, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, 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 A10 , typename A11 , typename A12, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, 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 A10 , typename A11 , typename A12 , typename A13, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, 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 A10 , typename A11 , typename A12 , typename A13 , typename A14, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, ctx) , boost::phoenix::eval(a14, 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 A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, ctx) , boost::phoenix::eval(a14, ctx) , boost::phoenix::eval(a15, 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 A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, ctx) , boost::phoenix::eval(a14, ctx) , boost::phoenix::eval(a15, ctx) , boost::phoenix::eval(a16, 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 A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const& , A17 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const& , A17 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, ctx) , boost::phoenix::eval(a14, ctx) , boost::phoenix::eval(a15, ctx) , boost::phoenix::eval(a16, ctx) , boost::phoenix::eval(a17, 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 A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const& , A17 const& , A18 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const& , A17 const& , A18 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, ctx) , boost::phoenix::eval(a14, ctx) , boost::phoenix::eval(a15, ctx) , boost::phoenix::eval(a16, ctx) , boost::phoenix::eval(a17, ctx) , boost::phoenix::eval(a18, 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 A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19, typename Context> | ||
|  |         struct result<This(A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9 , A10 , A11 , A12 , A13 , A14 , A15 , A16 , A17 , A18 , A19, Context)> | ||
|  |         { | ||
|  |             typedef | ||
|  |                 typename proto::detail::uncvref< | ||
|  |                     typename proto::result_of::value<A0>::type | ||
|  |                 >::type | ||
|  |             target_type; | ||
|  |             typedef typename target_type::type construct_type; | ||
|  |             typedef typename target_type::type * type; | ||
|  |         }; | ||
|  |         template <typename A0 , typename A1 , typename A2 , typename A3 , typename A4 , typename A5 , typename A6 , typename A7 , typename A8 , typename A9 , typename A10 , typename A11 , typename A12 , typename A13 , typename A14 , typename A15 , typename A16 , typename A17 , typename A18 , typename A19, typename Context> | ||
|  |         typename result<new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const& , A17 const& , A18 const& , A19 const&, Context &)>::type | ||
|  |         operator()( | ||
|  |             A0 const& | ||
|  |           , 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 , A10 const& a10 , A11 const& a11 , A12 const& a12 , A13 const& a13 , A14 const& a14 , A15 const& a15 , A16 const& a16 , A17 const& a17 , A18 const& a18 , A19 const& a19 | ||
|  |           , Context const & ctx | ||
|  |         ) const | ||
|  |         { | ||
|  |             return | ||
|  |                 new typename result< | ||
|  |                     new_eval(A0 const& , A1 const& , A2 const& , A3 const& , A4 const& , A5 const& , A6 const& , A7 const& , A8 const& , A9 const& , A10 const& , A11 const& , A12 const& , A13 const& , A14 const& , A15 const& , A16 const& , A17 const& , A18 const& , A19 const&, Context &) | ||
|  |                     >::construct_type( | ||
|  |                         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) , boost::phoenix::eval(a10, ctx) , boost::phoenix::eval(a11, ctx) , boost::phoenix::eval(a12, ctx) , boost::phoenix::eval(a13, ctx) , boost::phoenix::eval(a14, ctx) , boost::phoenix::eval(a15, ctx) , boost::phoenix::eval(a16, ctx) , boost::phoenix::eval(a17, ctx) , boost::phoenix::eval(a18, ctx) , boost::phoenix::eval(a19, ctx) | ||
|  |                 ); | ||
|  |         } |