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