x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
operator_lambda_func_base.hpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\lambda\detail\operator_lambda_func_base.hpp
Girar
Efecto
Propiedad
Historial
// Boost Lambda Library - operator_lambda_func_base.hpp ----------------- // // Copyright (C) 1999, 2000 Jaakko J�rvi (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
operator_lambda_func_base.hpp
Dirección de la página
Dirección del archivo
Anterior
15/20
Siguiente
Descargar
( 11 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.