Update contrib.
1 /* Copyright 2003-2006 Joaquín M López Muñoz.
2 * Distributed under 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)
6 * See http://www.boost.org/libs/multi_index for library home page.
9 #ifndef BOOST_MULTI_INDEX_IDENTITY_HPP
10 #define BOOST_MULTI_INDEX_IDENTITY_HPP
12 #if defined(_MSC_VER)&&(_MSC_VER>=1200)
16 #include <boost/config.hpp>
17 #include <boost/mpl/if.hpp>
18 #include <boost/multi_index/identity_fwd.hpp>
19 #include <boost/type_traits/is_const.hpp>
20 #include <boost/type_traits/remove_const.hpp>
21 #include <boost/utility/enable_if.hpp>
23 #if !defined(BOOST_NO_SFINAE)
24 #include <boost/type_traits/is_convertible.hpp>
29 template<class Type> class reference_wrapper; /* fwd decl. */
31 namespace multi_index{
35 /* identity is a do-nothing key extractor that returns the [const] Type&
37 * Additionally, identity is overloaded to support referece_wrappers
38 * of Type and "chained pointers" to Type's. By chained pointer to Type we
39 * mean a type P such that, given a p of type P
40 * *...n...*x is convertible to Type&, for some n>=1.
41 * Examples of chained pointers are raw and smart pointers, iterators and
42 * arbitrary combinations of these (vg. Type** or auto_ptr<Type*>.)
45 /* NB. Some overloads of operator() have an extra dummy parameter int=0.
46 * This disambiguator serves several purposes:
47 * - Without it, MSVC++ 6.0 incorrectly regards some overloads as
48 * specializations of a previous member function template.
49 * - MSVC++ 6.0/7.0 seem to incorrectly treat some different memfuns
50 * as if they have the same signature.
51 * - If remove_const is broken due to lack of PTS, int=0 avoids the
52 * declaration of memfuns with identical signature.
55 template<typename Type>
56 struct const_identity_base
58 typedef Type result_type;
60 template<typename ChainedPtr>
62 #if !defined(BOOST_NO_SFINAE)
63 typename disable_if<is_convertible<const ChainedPtr&,Type&>,Type&>::type
68 operator()(const ChainedPtr& x)const
70 return operator()(*x);
73 Type& operator()(Type& x)const
78 Type& operator()(const reference_wrapper<Type>& x)const
84 const reference_wrapper<typename remove_const<Type>::type>& x,int=0)const
90 template<typename Type>
91 struct non_const_identity_base
93 typedef Type result_type;
95 /* templatized for pointer-like types */
97 template<typename ChainedPtr>
99 #if !defined(BOOST_NO_SFINAE)
101 is_convertible<const ChainedPtr&,const Type&>,Type&>::type
106 operator()(const ChainedPtr& x)const
108 return operator()(*x);
111 const Type& operator()(const Type& x,int=0)const
116 Type& operator()(Type& x)const
121 const Type& operator()(const reference_wrapper<const Type>& x,int=0)const
126 Type& operator()(const reference_wrapper<Type>& x)const
132 } /* namespace multi_index::detail */
137 is_const<Type>::value,
138 detail::const_identity_base<Type>,detail::non_const_identity_base<Type>
143 } /* namespace multi_index */
145 } /* namespace boost */