diff options
author | Kevin Smith <git@kismith.co.uk> | 2013-01-12 18:41:34 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2013-01-13 10:36:26 (GMT) |
commit | f3bc816af1b0d61452de973963e453bf3b3f95a2 (patch) | |
tree | e895f8afa3580e6cff6f5ad2017d45bf147a17c2 /3rdParty/Boost/src/boost/proto/context/detail/preprocessed | |
parent | 188fc285c6555eadd3c9d50ab8a94adcade78d89 (diff) | |
download | swift-f3bc816af1b0d61452de973963e453bf3b3f95a2.zip swift-f3bc816af1b0d61452de973963e453bf3b3f95a2.tar.bz2 |
Adding in the spirit Boost stuff
Change-Id: I4f127ce61667243b64081b0aa309028d5077045f
Diffstat (limited to '3rdParty/Boost/src/boost/proto/context/detail/preprocessed')
3 files changed, 973 insertions, 0 deletions
diff --git a/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/callable_eval.hpp b/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/callable_eval.hpp new file mode 100644 index 0000000..5b32c8f --- /dev/null +++ b/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/callable_eval.hpp @@ -0,0 +1,597 @@ + /////////////////////////////////////////////////////////////////////////////// + /// \file callable_eval.hpp + /// Contains specializations of the callable_eval\<\> class template. + // + // 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) + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 1> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 1> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 2> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 2> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 3> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 3> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 4> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 4> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 5> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) , proto::child_c< 4>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 5> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; typedef typename proto::result_of::child_c< Expr const &, 4>::type child4; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 , child4 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) , proto::child_c< 4>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 6> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) , proto::child_c< 4>( sexpr_) , proto::child_c< 5>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 6> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; typedef typename proto::result_of::child_c< Expr const &, 4>::type child4; typedef typename proto::result_of::child_c< Expr const &, 5>::type child5; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 , child4 , child5 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) , proto::child_c< 4>( expr) , proto::child_c< 5>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 7> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) , proto::child_c< 4>( sexpr_) , proto::child_c< 5>( sexpr_) , proto::child_c< 6>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 7> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; typedef typename proto::result_of::child_c< Expr const &, 4>::type child4; typedef typename proto::result_of::child_c< Expr const &, 5>::type child5; typedef typename proto::result_of::child_c< Expr const &, 6>::type child6; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 , child4 , child5 , child6 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) , proto::child_c< 4>( expr) , proto::child_c< 5>( expr) , proto::child_c< 6>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 8> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) , proto::child_c< 4>( sexpr_) , proto::child_c< 5>( sexpr_) , proto::child_c< 6>( sexpr_) , proto::child_c< 7>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 8> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; typedef typename proto::result_of::child_c< Expr const &, 4>::type child4; typedef typename proto::result_of::child_c< Expr const &, 5>::type child5; typedef typename proto::result_of::child_c< Expr const &, 6>::type child6; typedef typename proto::result_of::child_c< Expr const &, 7>::type child7; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 , child4 , child5 , child6 , child7 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) , proto::child_c< 4>( expr) , proto::child_c< 5>( expr) , proto::child_c< 6>( expr) , proto::child_c< 7>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 9> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) , proto::child_c< 4>( sexpr_) , proto::child_c< 5>( sexpr_) , proto::child_c< 6>( sexpr_) , proto::child_c< 7>( sexpr_) , proto::child_c< 8>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 9> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; typedef typename proto::result_of::child_c< Expr const &, 4>::type child4; typedef typename proto::result_of::child_c< Expr const &, 5>::type child5; typedef typename proto::result_of::child_c< Expr const &, 6>::type child6; typedef typename proto::result_of::child_c< Expr const &, 7>::type child7; typedef typename proto::result_of::child_c< Expr const &, 8>::type child8; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 , child4 , child5 , child6 , child7 , child8 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) , proto::child_c< 4>( expr) , proto::child_c< 5>( expr) , proto::child_c< 6>( expr) , proto::child_c< 7>( expr) , proto::child_c< 8>( expr) + ); + } + }; + } + namespace detail + { + template<typename Expr, typename Context> + struct is_expr_handled<Expr, Context, 10> + { + static callable_context_wrapper<Context> &sctx_; + static Expr &sexpr_; + static typename Expr::proto_tag &stag_; + static const bool value = + sizeof(yes_type) == + sizeof( + detail::check_is_expr_handled( + (sctx_( + stag_ + , proto::child_c< 0>( sexpr_) , proto::child_c< 1>( sexpr_) , proto::child_c< 2>( sexpr_) , proto::child_c< 3>( sexpr_) , proto::child_c< 4>( sexpr_) , proto::child_c< 5>( sexpr_) , proto::child_c< 6>( sexpr_) , proto::child_c< 7>( sexpr_) , proto::child_c< 8>( sexpr_) , proto::child_c< 9>( sexpr_) + ), 0) + ) + ); + typedef mpl::bool_<value> type; + }; + } + namespace context + { + + + + + + + + + + + + + template<typename Expr, typename Context> + struct callable_eval<Expr, Context, 10> + { + typedef typename proto::result_of::child_c< Expr const &, 0>::type child0; typedef typename proto::result_of::child_c< Expr const &, 1>::type child1; typedef typename proto::result_of::child_c< Expr const &, 2>::type child2; typedef typename proto::result_of::child_c< Expr const &, 3>::type child3; typedef typename proto::result_of::child_c< Expr const &, 4>::type child4; typedef typename proto::result_of::child_c< Expr const &, 5>::type child5; typedef typename proto::result_of::child_c< Expr const &, 6>::type child6; typedef typename proto::result_of::child_c< Expr const &, 7>::type child7; typedef typename proto::result_of::child_c< Expr const &, 8>::type child8; typedef typename proto::result_of::child_c< Expr const &, 9>::type child9; + typedef + typename BOOST_PROTO_RESULT_OF< + Context( + typename Expr::proto_tag + , child0 , child1 , child2 , child3 , child4 , child5 , child6 , child7 , child8 , child9 + ) + >::type + result_type; + + + + result_type operator ()(Expr &expr, Context &context) const + { + return context( + typename Expr::proto_tag() + , proto::child_c< 0>( expr) , proto::child_c< 1>( expr) , proto::child_c< 2>( expr) , proto::child_c< 3>( expr) , proto::child_c< 4>( expr) , proto::child_c< 5>( expr) , proto::child_c< 6>( expr) , proto::child_c< 7>( expr) , proto::child_c< 8>( expr) , proto::child_c< 9>( expr) + ); + } + }; + } diff --git a/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/default_eval.hpp b/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/default_eval.hpp new file mode 100644 index 0000000..ebc69ce --- /dev/null +++ b/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/default_eval.hpp @@ -0,0 +1,279 @@ + /////////////////////////////////////////////////////////////////////////////// + /// \file default_eval.hpp + /// Contains specializations of the default_eval\<\> class template. + // + // 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<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 3> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 4> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 5> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 4>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 6> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 4>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 5>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 7> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 4>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 5>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 6>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 8> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 4>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 5>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 6>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 7>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) , proto::eval(proto::child_c< 7>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) , proto::eval(proto::child_c< 7>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 9> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 4>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 5>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 6>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 7>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 8>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) , proto::eval(proto::child_c< 7>( expr), context) , proto::eval(proto::child_c< 8>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) , proto::eval(proto::child_c< 7>( expr), context) , proto::eval(proto::child_c< 8>( expr), context)); + } + }; + template<typename Expr, typename Context> + struct default_eval<Expr, Context, proto::tag::function, 10> + { + typedef + typename proto::detail::result_of_fixup< + typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 0>::type >::type , Context >::type + >::type + function_type; + typedef + typename BOOST_PROTO_RESULT_OF< + function_type(typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 1>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 2>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 3>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 4>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 5>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 6>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 7>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 8>::type >::type , Context >::type , typename proto::result_of::eval< typename remove_reference< typename proto::result_of::child_c< Expr, 9>::type >::type , Context >::type) + >::type + result_type; + result_type operator ()(Expr &expr, Context &context) const + { + return this->invoke(expr, context, is_member_function_pointer<function_type>()); + } + private: + result_type invoke(Expr &expr, Context &context, mpl::false_) const + { + return proto::eval(proto::child_c< 0>( expr), context)( + proto::eval(proto::child_c< 1>( expr), context) , proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) , proto::eval(proto::child_c< 7>( expr), context) , proto::eval(proto::child_c< 8>( expr), context) , proto::eval(proto::child_c< 9>( expr), context) + ); + } + result_type invoke(Expr &expr, Context &context, mpl::true_) const + { + BOOST_PROTO_USE_GET_POINTER(); + typedef typename detail::class_member_traits<function_type>::class_type class_type; + return ( + BOOST_PROTO_GET_POINTER(class_type, (proto::eval(proto::child_c< 1>( expr), context))) ->* + proto::eval(proto::child_c< 0>( expr), context) + )(proto::eval(proto::child_c< 2>( expr), context) , proto::eval(proto::child_c< 3>( expr), context) , proto::eval(proto::child_c< 4>( expr), context) , proto::eval(proto::child_c< 5>( expr), context) , proto::eval(proto::child_c< 6>( expr), context) , proto::eval(proto::child_c< 7>( expr), context) , proto::eval(proto::child_c< 8>( expr), context) , proto::eval(proto::child_c< 9>( expr), context)); + } + }; diff --git a/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/null_eval.hpp b/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/null_eval.hpp new file mode 100644 index 0000000..e124408 --- /dev/null +++ b/3rdParty/Boost/src/boost/proto/context/detail/preprocessed/null_eval.hpp @@ -0,0 +1,97 @@ + /////////////////////////////////////////////////////////////////////////////// + /// \file null_eval.hpp + /// Contains specializations of the null_eval\<\> class template. + // + // 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<typename Expr, typename Context> + struct null_eval<Expr, Context, 1> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 2> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 3> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 4> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 5> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); proto::eval(proto::child_c< 4>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 6> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); proto::eval(proto::child_c< 4>(expr), ctx); proto::eval(proto::child_c< 5>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 7> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); proto::eval(proto::child_c< 4>(expr), ctx); proto::eval(proto::child_c< 5>(expr), ctx); proto::eval(proto::child_c< 6>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 8> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); proto::eval(proto::child_c< 4>(expr), ctx); proto::eval(proto::child_c< 5>(expr), ctx); proto::eval(proto::child_c< 6>(expr), ctx); proto::eval(proto::child_c< 7>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 9> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); proto::eval(proto::child_c< 4>(expr), ctx); proto::eval(proto::child_c< 5>(expr), ctx); proto::eval(proto::child_c< 6>(expr), ctx); proto::eval(proto::child_c< 7>(expr), ctx); proto::eval(proto::child_c< 8>(expr), ctx); + } + }; + template<typename Expr, typename Context> + struct null_eval<Expr, Context, 10> + { + typedef void result_type; + void operator ()(Expr &expr, Context &ctx) const + { + proto::eval(proto::child_c< 0>(expr), ctx); proto::eval(proto::child_c< 1>(expr), ctx); proto::eval(proto::child_c< 2>(expr), ctx); proto::eval(proto::child_c< 3>(expr), ctx); proto::eval(proto::child_c< 4>(expr), ctx); proto::eval(proto::child_c< 5>(expr), ctx); proto::eval(proto::child_c< 6>(expr), ctx); proto::eval(proto::child_c< 7>(expr), ctx); proto::eval(proto::child_c< 8>(expr), ctx); proto::eval(proto::child_c< 9>(expr), ctx); + } + }; |