blob: 8da4714ef97c5ceb4f88889415a6805c06b03a3d [file] [log] [blame]
#if !defined(NDNBOOST_PP_IS_ITERATING)
///// header body
#ifndef NDNBOOST_MPL_AUX_LAMBDA_NO_CTPS_HPP_INCLUDED
#define NDNBOOST_MPL_AUX_LAMBDA_NO_CTPS_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2000-2004
//
// 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)
//
// See http://www.boost.org/libs/mpl for documentation.
// $Id: lambda_no_ctps.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
// $Revision: 49267 $
#if !defined(NDNBOOST_MPL_PREPROCESSING_MODE)
# include <ndnboost/mpl/lambda_fwd.hpp>
# include <ndnboost/mpl/bind_fwd.hpp>
# include <ndnboost/mpl/protect.hpp>
# include <ndnboost/mpl/is_placeholder.hpp>
# include <ndnboost/mpl/if.hpp>
# include <ndnboost/mpl/identity.hpp>
# include <ndnboost/mpl/bool.hpp>
# include <ndnboost/mpl/aux_/na_spec.hpp>
# include <ndnboost/mpl/aux_/lambda_support.hpp>
# include <ndnboost/mpl/aux_/template_arity.hpp>
# include <ndnboost/mpl/aux_/value_wknd.hpp>
#endif
#include <ndnboost/mpl/aux_/config/use_preprocessed.hpp>
#if !defined(NDNBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS) \
&& !defined(NDNBOOST_MPL_PREPROCESSING_MODE)
# define NDNBOOST_MPL_PREPROCESSED_HEADER lambda_no_ctps.hpp
# include <ndnboost/mpl/aux_/include_preprocessed.hpp>
#else
# include <ndnboost/mpl/limits/arity.hpp>
# include <ndnboost/mpl/aux_/preprocessor/params.hpp>
# include <ndnboost/mpl/aux_/preprocessor/default_params.hpp>
# include <ndnboost/mpl/aux_/preprocessor/repeat.hpp>
# include <ndnboost/mpl/aux_/preprocessor/enum.hpp>
# include <ndnboost/mpl/aux_/config/msvc.hpp>
# include <ndnboost/mpl/aux_/config/workaround.hpp>
# include <ndnboost/preprocessor/comma_if.hpp>
# include <ndnboost/preprocessor/iterate.hpp>
# include <ndnboost/preprocessor/inc.hpp>
# include <ndnboost/preprocessor/cat.hpp>
namespace ndnboost { namespace mpl {
# define AUX778076_LAMBDA_PARAMS(i_, param) \
NDNBOOST_MPL_PP_PARAMS(i_, param) \
/**/
namespace aux {
#define n_ NDNBOOST_MPL_LIMIT_METAFUNCTION_ARITY
template<
NDNBOOST_MPL_PP_DEFAULT_PARAMS(n_,bool C,false)
>
struct lambda_or
: true_
{
};
template<>
struct lambda_or< NDNBOOST_MPL_PP_ENUM(n_,false) >
: false_
{
};
#undef n_
template< typename Arity > struct lambda_impl
{
template< typename T, typename Tag, typename Protect > struct result_
{
typedef T type;
typedef is_placeholder<T> is_le;
};
};
#define NDNBOOST_PP_ITERATION_PARAMS_1 \
(3,(1, NDNBOOST_MPL_LIMIT_METAFUNCTION_ARITY, <ndnboost/mpl/aux_/lambda_no_ctps.hpp>))
#include NDNBOOST_PP_ITERATE()
} // namespace aux
template<
typename T
, typename Tag
, typename Protect
>
struct lambda
{
/// Metafunction forwarding confuses MSVC 6.x
typedef typename aux::template_arity<T>::type arity_;
typedef typename aux::lambda_impl<arity_>
::template result_< T,Tag,Protect > l_;
typedef typename l_::type type;
typedef typename l_::is_le is_le;
NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(3, lambda, (T, Tag, Protect))
};
NDNBOOST_MPL_AUX_NA_SPEC2(1, 3, lambda)
template<
typename T
>
struct is_lambda_expression
: lambda<T>::is_le
{
};
# undef AUX778076_LAMBDA_PARAMS
}}
#endif // NDNBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
#endif // NDNBOOST_MPL_AUX_LAMBDA_NO_CTPS_HPP_INCLUDED
///// iteration, depth == 1
#else
#define i_ NDNBOOST_PP_FRAME_ITERATION(1)
# define AUX778076_LAMBDA_TYPEDEF(unused, i_, F) \
typedef lambda< \
typename F::NDNBOOST_PP_CAT(arg,NDNBOOST_PP_INC(i_)) \
, Tag \
, false_ \
> NDNBOOST_PP_CAT(l,NDNBOOST_PP_INC(i_)); \
/**/
# define AUX778076_IS_LE_TYPEDEF(unused, i_, unused2) \
typedef typename NDNBOOST_PP_CAT(l,NDNBOOST_PP_INC(i_))::is_le \
NDNBOOST_PP_CAT(is_le,NDNBOOST_PP_INC(i_)); \
/**/
# define AUX778076_IS_LAMBDA_EXPR(unused, i_, unused2) \
NDNBOOST_PP_COMMA_IF(i_) \
NDNBOOST_MPL_AUX_MSVC_VALUE_WKND(NDNBOOST_PP_CAT(is_le,NDNBOOST_PP_INC(i_)))::value \
/**/
# define AUX778076_LAMBDA_RESULT(unused, i_, unused2) \
, typename NDNBOOST_PP_CAT(l,NDNBOOST_PP_INC(i_))::type \
/**/
template<> struct lambda_impl< int_<i_> >
{
template< typename F, typename Tag, typename Protect > struct result_
{
NDNBOOST_MPL_PP_REPEAT(i_, AUX778076_LAMBDA_TYPEDEF, F)
NDNBOOST_MPL_PP_REPEAT(i_, AUX778076_IS_LE_TYPEDEF, unused)
typedef aux::lambda_or<
NDNBOOST_MPL_PP_REPEAT(i_, AUX778076_IS_LAMBDA_EXPR, unused)
> is_le;
typedef NDNBOOST_PP_CAT(bind,i_)<
typename F::rebind
NDNBOOST_MPL_PP_REPEAT(i_, AUX778076_LAMBDA_RESULT, unused)
> bind_;
typedef typename if_<
is_le
, if_< Protect, mpl::protect<bind_>, bind_ >
, identity<F>
>::type type_;
typedef typename type_::type type;
};
};
# undef AUX778076_LAMBDA_RESULT
# undef AUX778076_IS_LAMBDA_EXPR
# undef AUX778076_IS_LE_TYPEDEF
# undef AUX778076_LAMBDA_TYPEDEF
#undef i_
#endif // NDNBOOST_PP_IS_ITERATING