/////////////////////////////////////////////////////////////////////////////// /// \file call.hpp /// Contains definition of the call<> transform. // // Copyright 2008 Eric Niebler. 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 struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A0 , detail::expand_pattern_rest_0< Fun > >::type >::template impl {}; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A1 , detail::expand_pattern_rest_1< Fun , A0 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A2 , detail::expand_pattern_rest_2< Fun , A0 , A1 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A3 , detail::expand_pattern_rest_3< Fun , A0 , A1 , A2 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef typename when<_, A4>::template impl a4; typedef typename a4::result_type b4; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d)) , detail::as_lvalue(a4()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A4 , detail::expand_pattern_rest_4< Fun , A0 , A1 , A2 , A3 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef typename when<_, A4>::template impl a4; typedef typename a4::result_type b4; typedef typename when<_, A5>::template impl a5; typedef typename a5::result_type b5; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d)) , detail::as_lvalue(a4()(e, s, d)) , detail::as_lvalue(a5()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A5 , detail::expand_pattern_rest_5< Fun , A0 , A1 , A2 , A3 , A4 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef typename when<_, A4>::template impl a4; typedef typename a4::result_type b4; typedef typename when<_, A5>::template impl a5; typedef typename a5::result_type b5; typedef typename when<_, A6>::template impl a6; typedef typename a6::result_type b6; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d)) , detail::as_lvalue(a4()(e, s, d)) , detail::as_lvalue(a5()(e, s, d)) , detail::as_lvalue(a6()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A6 , detail::expand_pattern_rest_6< Fun , A0 , A1 , A2 , A3 , A4 , A5 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef typename when<_, A4>::template impl a4; typedef typename a4::result_type b4; typedef typename when<_, A5>::template impl a5; typedef typename a5::result_type b5; typedef typename when<_, A6>::template impl a6; typedef typename a6::result_type b6; typedef typename when<_, A7>::template impl a7; typedef typename a7::result_type b7; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d)) , detail::as_lvalue(a4()(e, s, d)) , detail::as_lvalue(a5()(e, s, d)) , detail::as_lvalue(a6()(e, s, d)) , detail::as_lvalue(a7()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A7 , detail::expand_pattern_rest_7< Fun , A0 , A1 , A2 , A3 , A4 , A5 , A6 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef typename when<_, A4>::template impl a4; typedef typename a4::result_type b4; typedef typename when<_, A5>::template impl a5; typedef typename a5::result_type b5; typedef typename when<_, A6>::template impl a6; typedef typename a6::result_type b6; typedef typename when<_, A7>::template impl a7; typedef typename a7::result_type b7; typedef typename when<_, A8>::template impl a8; typedef typename a8::result_type b8; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d)) , detail::as_lvalue(a4()(e, s, d)) , detail::as_lvalue(a5()(e, s, d)) , detail::as_lvalue(a6()(e, s, d)) , detail::as_lvalue(a7()(e, s, d)) , detail::as_lvalue(a8()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A8 , detail::expand_pattern_rest_8< Fun , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 > >::type >::template impl {}; }; template struct call : transform > { template struct impl : transform_impl { typedef typename when<_, A0>::template impl a0; typedef typename a0::result_type b0; typedef typename when<_, A1>::template impl a1; typedef typename a1::result_type b1; typedef typename when<_, A2>::template impl a2; typedef typename a2::result_type b2; typedef typename when<_, A3>::template impl a3; typedef typename a3::result_type b3; typedef typename when<_, A4>::template impl a4; typedef typename a4::result_type b4; typedef typename when<_, A5>::template impl a5; typedef typename a5::result_type b5; typedef typename when<_, A6>::template impl a6; typedef typename a6::result_type b6; typedef typename when<_, A7>::template impl a7; typedef typename a7::result_type b7; typedef typename when<_, A8>::template impl a8; typedef typename a8::result_type b8; typedef typename when<_, A9>::template impl a9; typedef typename a9::result_type b9; typedef detail::poly_function_traits function_traits; typedef typename function_traits::result_type result_type; BOOST_FORCEINLINE result_type operator ()( typename impl::expr_param e , typename impl::state_param s , typename impl::data_param d ) const { typedef typename function_traits::function_type function_type; return function_type()(detail::as_lvalue(a0()(e, s, d)) , detail::as_lvalue(a1()(e, s, d)) , detail::as_lvalue(a2()(e, s, d)) , detail::as_lvalue(a3()(e, s, d)) , detail::as_lvalue(a4()(e, s, d)) , detail::as_lvalue(a5()(e, s, d)) , detail::as_lvalue(a6()(e, s, d)) , detail::as_lvalue(a7()(e, s, d)) , detail::as_lvalue(a8()(e, s, d)) , detail::as_lvalue(a9()(e, s, d))); } }; }; template struct call : transform > { template struct impl : call< typename detail::expand_pattern< proto::arity_of::value , A9 , detail::expand_pattern_rest_9< Fun , A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 > >::type >::template impl {}; };