Update contrib.
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
7 # include <boost/mpl/apply.hpp>
8 # include <boost/mpl/assert.hpp>
9 # include <boost/mpl/and.hpp>
10 # include <boost/parameter/aux_/result_of0.hpp>
11 # include <boost/parameter/aux_/void.hpp>
12 # include <boost/type_traits/is_same.hpp>
14 # if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
15 # include <boost/mpl/eval_if.hpp>
18 namespace boost { namespace parameter {
20 // A metafunction that, given an argument pack, returns the type of
21 // the parameter identified by the given keyword. If no such
22 // parameter has been specified, returns Default
24 # if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) \
25 || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
26 template <class Parameters, class Keyword, class Default>
29 typedef typename mpl::apply_wrap3<
30 typename Parameters::binding,Keyword,Default,mpl::true_
33 BOOST_MPL_ASSERT_NOT((
35 is_same<Default, void_>
36 , is_same<type, void_>
42 template <class Parameters, class Keyword, class Default = void_>
43 # if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
49 # if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) \
50 || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
51 typedef typename mpl::eval_if<
52 mpl::is_placeholder<Parameters>
54 , binding0<Parameters,Keyword,Default>
57 typedef typename mpl::apply_wrap3<
58 typename Parameters::binding,Keyword,Default,mpl::true_
61 BOOST_MPL_ASSERT_NOT((
63 is_same<Default, void_>
64 , is_same<type, void_>
69 # if !BOOST_WORKAROUND(BOOST_MSVC, < 1300)
70 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,binding,(Parameters,Keyword,Default))
74 # if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
75 template <class Parameters, class Keyword, class Default = void_>
78 typedef typename mpl::eval_if<
79 is_same<Parameters, int>
81 , binding_eti<Parameters, Keyword, Default>
84 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,binding,(Parameters,Keyword,Default))
88 // A metafunction that, given an argument pack, returns the type of
89 // the parameter identified by the given keyword. If no such
90 // parameter has been specified, returns the type returned by invoking
92 template <class Parameters, class Keyword, class DefaultFn>
95 typedef typename mpl::apply_wrap3<
96 typename Parameters::binding
98 , typename aux::result_of0<DefaultFn>::type
104 }} // namespace boost::parameter
106 #endif // BOOST_PARAMETER_BINDING_DWA200558_HPP