123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- inline \
- boost::phoenix::detail::expression::function_eval<FUNC>::type const \
- NAME() \
- { \
- return boost::phoenix::detail::expression:: \
- function_eval<FUNC>::make(FUNC()); \
- } \
- template <BOOST_PHOENIX_typename_A(N)> \
- inline \
- typename \
- boost::phoenix::detail::expression::function_eval< \
- FUNC \
- , BOOST_PHOENIX_A(N)>::type const \
- NAME(BOOST_PHOENIX_A_const_ref_a(N)) \
- { \
- return boost::phoenix::detail::expression:: \
- function_eval<FUNC, BOOST_PHOENIX_A(N)>:: \
- make(FUNC(), BOOST_PHOENIX_a(N)); \
- } \
- BOOST_PHOENIX_ADAPT_CALLABLE_NULLARY(NAME, FUNC) \
- BOOST_PP_REPEAT_FROM_TO( \
- 1 \
- , BOOST_PHOENIX_LIMIT \
- , BOOST_PHOENIX_ADAPT_CALLABLE_VARARG_R \
- , (NAME, FUNC) \
- ) \
- BOOST_PHOENIX_ADAPT_CALLABLE( \
- BOOST_PP_TUPLE_ELEM(2, 0, D) \
- , BOOST_PP_TUPLE_ELEM(2, 1, D) \
- , N \
- ) \
|