123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- #ifndef BOOST_LAMBDA_ARITY_CODE_HPP
- #define BOOST_LAMBDA_ARITY_CODE_HPP
- #include "boost/type_traits/cv_traits.hpp"
- #include "boost/type_traits/transform_traits.hpp"
- namespace boost {
- namespace lambda {
- enum { NONE = 0x00,
- FIRST = 0x01,
- SECOND = 0x02,
- THIRD = 0x04,
- EXCEPTION = 0x08,
- RETHROW = 0x10};
- template<class T>
- struct get_tuple_arity;
- namespace detail {
- template <class T> struct get_arity_;
- }
- template <class T> struct get_arity {
- BOOST_STATIC_CONSTANT(int, value = detail::get_arity_<typename boost::remove_cv<typename boost::remove_reference<T>::type>::type>::value);
- };
- namespace detail {
- template<class T>
- struct get_arity_ {
- BOOST_STATIC_CONSTANT(int, value = 0);
- };
- template<class T>
- struct get_arity_<lambda_functor<T> > {
- BOOST_STATIC_CONSTANT(int, value = get_arity<T>::value);
- };
- template<class Action, class Args>
- struct get_arity_<lambda_functor_base<Action, Args> > {
- BOOST_STATIC_CONSTANT(int, value = get_tuple_arity<Args>::value);
- };
- template<int I>
- struct get_arity_<placeholder<I> > {
- BOOST_STATIC_CONSTANT(int, value = I);
- };
- }
- template<class T>
- struct get_tuple_arity {
- BOOST_STATIC_CONSTANT(int, value = get_arity<typename T::head_type>::value | get_tuple_arity<typename T::tail_type>::value);
- };
- template<>
- struct get_tuple_arity<null_type> {
- BOOST_STATIC_CONSTANT(int, value = 0);
- };
-
- template<class T, int I>
- struct has_placeholder {
- BOOST_STATIC_CONSTANT(bool, value = (get_arity<T>::value & I) != 0);
- };
- template<int I, int J>
- struct includes_placeholder {
- BOOST_STATIC_CONSTANT(bool, value = (J & I) != 0);
- };
- template<int I, int J>
- struct lacks_placeholder {
- BOOST_STATIC_CONSTANT(bool, value = ((J & I) == 0));
- };
- }
- }
- #endif
|