]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/iterator/interoperable.hpp
Logo AND Algorithmique Numérique Distribuée

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