Release 1.39.0
[boost.git] / Boost_1_39_0 / boost / iterator / interoperable.hpp
blobc13dd9b47b9d7e4b877e2e7ab5cecf5e9b631759
1 // (C) Copyright David Abrahams 2002.
2 // (C) Copyright Jeremy Siek 2002.
3 // (C) Copyright Thomas Witt 2002.
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 #ifndef BOOST_INTEROPERABLE_23022003THW_HPP
8 # define BOOST_INTEROPERABLE_23022003THW_HPP
10 # include <boost/mpl/bool.hpp>
11 # include <boost/mpl/or.hpp>
13 # include <boost/type_traits/is_convertible.hpp>
15 # include <boost/iterator/detail/config_def.hpp> // must appear last
17 namespace boost
21 // Meta function that determines whether two
22 // iterator types are considered interoperable.
24 // Two iterator types A,B are considered interoperable if either
25 // A is convertible to B or vice versa.
26 // This interoperability definition is in sync with the
27 // standards requirements on constant/mutable container
28 // iterators (23.1 [lib.container.requirements]).
30 // For compilers that don't support is_convertible
31 // is_interoperable gives false positives. See comments
32 // on operator implementation for consequences.
34 template <typename A, typename B>
35 struct is_interoperable
36 # ifdef BOOST_NO_STRICT_ITERATOR_INTEROPERABILITY
37 : mpl::true_
38 # else
39 : mpl::or_<
40 is_convertible< A, B >
41 , is_convertible< B, A > >
42 # endif
46 } // namespace boost
48 # include <boost/iterator/detail/config_undef.hpp>
50 #endif // BOOST_INTEROPERABLE_23022003THW_HPP