// Boost Lambda Library - operator_lambda_func_base.hpp ----------------- // // Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) // // 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) // // For more information, see www.boost.org // ------------------------------------------------------------ #ifndef BOOST_LAMBDA_OPERATOR_LAMBDA_FUNC_BASE_HPP #define BOOST_LAMBDA_OPERATOR_LAMBDA_FUNC_BASE_HPP namespace boost { namespace lambda { // These operators cannot be implemented as apply functions of action // templates // Specialization for comma. template class lambda_functor_base, Args> { public: Args args; public: explicit lambda_functor_base(const Args& a) : args(a) {} template RET call(CALL_FORMAL_ARGS) const { return detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS), detail::select(boost::tuples::get<1>(args), CALL_ACTUAL_ARGS); } template struct sig { private: typedef typename detail::deduce_argument_types::type rets_t; public: typedef typename return_type_2_comma< // comma needs special handling typename detail::element_or_null<0, rets_t>::type, typename detail::element_or_null<1, rets_t>::type >::type type; }; }; namespace detail { // helper traits to make the expression shorter, takes binary action // bound argument tuple, open argument tuple and gives the return type template class binary_rt { private: typedef typename detail::deduce_argument_types::type rets_t; public: typedef typename return_type_2_prot< Action, typename detail::element_or_null<0, rets_t>::type, typename detail::element_or_null<1, rets_t>::type >::type type; }; // same for unary actions template class unary_rt { private: typedef typename detail::deduce_argument_types::type rets_t; public: typedef typename return_type_1_prot< Action, typename detail::element_or_null<0, rets_t>::type >::type type; }; } // end detail // Specialization for logical and (to preserve shortcircuiting) // this could be done with a macro as the others, code used to be different template class lambda_functor_base, Args> { public: Args args; public: explicit lambda_functor_base(const Args& a) : args(a) {} template RET call(CALL_FORMAL_ARGS) const { return detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS) && detail::select(boost::tuples::get<1>(args), CALL_ACTUAL_ARGS); } template struct sig { typedef typename detail::binary_rt, Args, SigArgs>::type type; }; }; // Specialization for logical or (to preserve shortcircuiting) // this could be done with a macro as the others, code used to be different template class lambda_functor_base, Args> { public: Args args; public: explicit lambda_functor_base(const Args& a) : args(a) {} template RET call(CALL_FORMAL_ARGS) const { return detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS) || detail::select(boost::tuples::get<1>(args), CALL_ACTUAL_ARGS); } template struct sig { typedef typename detail::binary_rt, Args, SigArgs>::type type; }; }; // Specialization for subscript template class lambda_functor_base, Args> { public: Args args; public: explicit lambda_functor_base(const Args& a) : args(a) {} template RET call(CALL_FORMAL_ARGS) const { return detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS) [detail::select(boost::tuples::get<1>(args), CALL_ACTUAL_ARGS)]; } template struct sig { typedef typename detail::binary_rt, Args, SigArgs>::type type; }; }; #define BOOST_LAMBDA_BINARY_ACTION(SYMBOL, ACTION_CLASS) \ template \ class lambda_functor_base { \ public: \ Args args; \ public: \ explicit lambda_functor_base(const Args& a) : args(a) {} \ \ template \ RET call(CALL_FORMAL_ARGS) const { \ return detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS) \ SYMBOL \ detail::select(boost::tuples::get<1>(args), CALL_ACTUAL_ARGS); \ } \ template struct sig { \ typedef typename \ detail::binary_rt::type type; \ }; \ }; #define BOOST_LAMBDA_PREFIX_UNARY_ACTION(SYMBOL, ACTION_CLASS) \ template \ class lambda_functor_base { \ public: \ Args args; \ public: \ explicit lambda_functor_base(const Args& a) : args(a) {} \ \ template \ RET call(CALL_FORMAL_ARGS) const { \ return SYMBOL \ detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS); \ } \ template struct sig { \ typedef typename \ detail::unary_rt::type type; \ }; \ }; #define BOOST_LAMBDA_POSTFIX_UNARY_ACTION(SYMBOL, ACTION_CLASS) \ template \ class lambda_functor_base { \ public: \ Args args; \ public: \ explicit lambda_functor_base(const Args& a) : args(a) {} \ \ template \ RET call(CALL_FORMAL_ARGS) const { \ return \ detail::select(boost::tuples::get<0>(args), CALL_ACTUAL_ARGS) SYMBOL; \ } \ template struct sig { \ typedef typename \ detail::unary_rt::type type; \ }; \ }; BOOST_LAMBDA_BINARY_ACTION(+,arithmetic_action) BOOST_LAMBDA_BINARY_ACTION(-,arithmetic_action) BOOST_LAMBDA_BINARY_ACTION(*,arithmetic_action) BOOST_LAMBDA_BINARY_ACTION(/,arithmetic_action) BOOST_LAMBDA_BINARY_ACTION(%,arithmetic_action) BOOST_LAMBDA_BINARY_ACTION(<<,bitwise_action) BOOST_LAMBDA_BINARY_ACTION(>>,bitwise_action) BOOST_LAMBDA_BINARY_ACTION(&,bitwise_action) BOOST_LAMBDA_BINARY_ACTION(|,bitwise_action) BOOST_LAMBDA_BINARY_ACTION(^,bitwise_action) BOOST_LAMBDA_BINARY_ACTION(<,relational_action) BOOST_LAMBDA_BINARY_ACTION(>,relational_action) BOOST_LAMBDA_BINARY_ACTION(<=,relational_action) BOOST_LAMBDA_BINARY_ACTION(>=,relational_action) BOOST_LAMBDA_BINARY_ACTION(==,relational_action) BOOST_LAMBDA_BINARY_ACTION(!=,relational_action) BOOST_LAMBDA_BINARY_ACTION(+=,arithmetic_assignment_action) BOOST_LAMBDA_BINARY_ACTION(-=,arithmetic_assignment_action) BOOST_LAMBDA_BINARY_ACTION(*=,arithmetic_assignment_action) BOOST_LAMBDA_BINARY_ACTION(/=,arithmetic_assignment_action) BOOST_LAMBDA_BINARY_ACTION(%=,arithmetic_assignment_action) BOOST_LAMBDA_BINARY_ACTION(<<=,bitwise_assignment_action) BOOST_LAMBDA_BINARY_ACTION(>>=,bitwise_assignment_action) BOOST_LAMBDA_BINARY_ACTION(&=,bitwise_assignment_action) BOOST_LAMBDA_BINARY_ACTION(|=,bitwise_assignment_action) BOOST_LAMBDA_BINARY_ACTION(^=,bitwise_assignment_action) BOOST_LAMBDA_BINARY_ACTION(=,other_action< assignment_action>) BOOST_LAMBDA_PREFIX_UNARY_ACTION(+, unary_arithmetic_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(-, unary_arithmetic_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(~, bitwise_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(!, logical_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(++, pre_increment_decrement_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(--, pre_increment_decrement_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(&,other_action) BOOST_LAMBDA_PREFIX_UNARY_ACTION(*,other_action) BOOST_LAMBDA_POSTFIX_UNARY_ACTION(++, post_increment_decrement_action) BOOST_LAMBDA_POSTFIX_UNARY_ACTION(--, post_increment_decrement_action) #undef BOOST_LAMBDA_POSTFIX_UNARY_ACTION #undef BOOST_LAMBDA_PREFIX_UNARY_ACTION #undef BOOST_LAMBDA_BINARY_ACTION } // namespace lambda } // namespace boost #endif