binding.hpp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // Copyright David Abrahams 2005. Distributed under the Boost
  2. // Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef BOOST_PARAMETER_BINDING_DWA200558_HPP
  5. # define BOOST_PARAMETER_BINDING_DWA200558_HPP
  6. # include <boost/mpl/apply.hpp>
  7. # include <boost/mpl/assert.hpp>
  8. # include <boost/mpl/and.hpp>
  9. # include <boost/parameter/aux_/result_of0.hpp>
  10. # include <boost/parameter/aux_/void.hpp>
  11. # include <boost/type_traits/is_same.hpp>
  12. namespace boost { namespace parameter {
  13. // A metafunction that, given an argument pack, returns the type of
  14. // the parameter identified by the given keyword. If no such
  15. // parameter has been specified, returns Default
  16. # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  17. template <class Parameters, class Keyword, class Default>
  18. struct binding0
  19. {
  20. typedef typename mpl::apply_wrap3<
  21. typename Parameters::binding,Keyword,Default,mpl::true_
  22. >::type type;
  23. BOOST_MPL_ASSERT_NOT((
  24. mpl::and_<
  25. is_same<Default, void_>
  26. , is_same<type, void_>
  27. >
  28. ));
  29. };
  30. # endif
  31. template <class Parameters, class Keyword, class Default = void_>
  32. struct binding
  33. {
  34. # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  35. typedef typename mpl::eval_if<
  36. mpl::is_placeholder<Parameters>
  37. , mpl::identity<int>
  38. , binding0<Parameters,Keyword,Default>
  39. >::type type;
  40. # else
  41. typedef typename mpl::apply_wrap3<
  42. typename Parameters::binding,Keyword,Default,mpl::true_
  43. >::type type;
  44. BOOST_MPL_ASSERT_NOT((
  45. mpl::and_<
  46. is_same<Default, void_>
  47. , is_same<type, void_>
  48. >
  49. ));
  50. # endif
  51. BOOST_MPL_AUX_LAMBDA_SUPPORT(3,binding,(Parameters,Keyword,Default))
  52. };
  53. // A metafunction that, given an argument pack, returns the type of
  54. // the parameter identified by the given keyword. If no such
  55. // parameter has been specified, returns the type returned by invoking
  56. // DefaultFn
  57. template <class Parameters, class Keyword, class DefaultFn>
  58. struct lazy_binding
  59. {
  60. typedef typename mpl::apply_wrap3<
  61. typename Parameters::binding
  62. , Keyword
  63. , typename aux::result_of0<DefaultFn>::type
  64. , mpl::true_
  65. >::type type;
  66. };
  67. }} // namespace boost::parameter
  68. #endif // BOOST_PARAMETER_BINDING_DWA200558_HPP