overloads.hpp 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // Copyright David Abrahams, Daniel Wallin 2003. Use, modification and
  2. // distribution is subject to the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. // This file generates overloads in this format:
  6. //
  7. // template<class A0, class A1>
  8. // typename mpl::apply_wrap1<
  9. // aux::make_arg_list<
  10. // PS0,A0
  11. // , aux::make_arg_list<
  12. // PS1,A1
  13. // , mpl::identity<aux::empty_arg_list>
  14. // >
  15. // >
  16. // , unnamed_list
  17. // >::type
  18. // operator()(A0 const& a0, A1 const& a1) const
  19. // {
  20. // typedef typename mpl::apply_wrap1<
  21. // aux::make_arg_list<
  22. // PS0,A0
  23. // , aux::make_arg_list<
  24. // PS1,A1
  25. // , mpl::identity<aux::empty_arg_list>
  26. // >
  27. // >
  28. // >::type arg_tuple;
  29. //
  30. // return arg_tuple(
  31. // a0
  32. // , a1
  33. // , aux::void_()
  34. // ...
  35. // );
  36. // }
  37. //
  38. #if !defined(BOOST_PP_IS_ITERATING)
  39. # error Boost.Parameters - do not include this file!
  40. #endif
  41. #define N BOOST_PP_ITERATION()
  42. #define BOOST_PARAMETER_open_list(z, n, text) \
  43. aux::item< \
  44. BOOST_PP_CAT(PS, n), BOOST_PP_CAT(A, n)
  45. #define BOOST_PARAMETER_close_list(z, n, text) >
  46. #define BOOST_PARAMETER_arg_list(n) \
  47. aux::make_arg_list< \
  48. BOOST_PP_ENUM(N, BOOST_PARAMETER_open_list, _) \
  49. , void_ \
  50. BOOST_PP_REPEAT(N, BOOST_PARAMETER_close_list, _) \
  51. , deduced_list \
  52. , aux::tag_keyword_arg \
  53. >
  54. #define BOOST_PARAMETER_arg_pack_init(z, n, limit) \
  55. BOOST_PP_CAT(a, BOOST_PP_SUB(limit,n))
  56. template<BOOST_PP_ENUM_PARAMS(N, class A)>
  57. typename mpl::first<
  58. typename BOOST_PARAMETER_arg_list(N)::type
  59. >::type
  60. operator()(BOOST_PP_ENUM_BINARY_PARAMS(N, A, & a)) const
  61. {
  62. typedef typename BOOST_PARAMETER_arg_list(N)::type result;
  63. typedef typename mpl::first<result>::type result_type;
  64. typedef typename mpl::second<result>::type error;
  65. error();
  66. return result_type(
  67. BOOST_PP_ENUM(N, BOOST_PARAMETER_arg_pack_init, BOOST_PP_DEC(N))
  68. BOOST_PP_ENUM_TRAILING_PARAMS(
  69. BOOST_PP_SUB(BOOST_PARAMETER_MAX_ARITY, N)
  70. , aux::void_reference() BOOST_PP_INTERCEPT
  71. ));
  72. }
  73. #undef BOOST_PARAMETER_arg_list
  74. #undef BOOST_PARAMETER_open_list
  75. #undef BOOST_PARAMETER_close_list
  76. #undef N