blob: 25b2104a7423c263f6641118aa5b44fd7d4b26c4 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (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)
Jeff Thompson3d613fd2013-10-15 15:39:04 -07007#ifndef NDNBOOST_INTEROPERABLE_23022003THW_HPP
8# define NDNBOOST_INTEROPERABLE_23022003THW_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07009
10# include <ndnboost/mpl/bool.hpp>
11# include <ndnboost/mpl/or.hpp>
12
13# include <ndnboost/type_traits/is_convertible.hpp>
14
15# include <ndnboost/iterator/detail/config_def.hpp> // must appear last
16
17namespace ndnboost
18{
19
20 //
21 // Meta function that determines whether two
22 // iterator types are considered interoperable.
23 //
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]).
29 //
30 // For compilers that don't support is_convertible
31 // is_interoperable gives false positives. See comments
32 // on operator implementation for consequences.
33 //
34 template <typename A, typename B>
35 struct is_interoperable
Jeff Thompson3d613fd2013-10-15 15:39:04 -070036# ifdef NDNBOOST_NO_STRICT_ITERATOR_INTEROPERABILITY
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070037 : mpl::true_
38# else
39 : mpl::or_<
40 is_convertible< A, B >
41 , is_convertible< B, A > >
42# endif
43 {
44 };
45
46} // namespace ndnboost
47
48# include <ndnboost/iterator/detail/config_undef.hpp>
49
Jeff Thompson3d613fd2013-10-15 15:39:04 -070050#endif // NDNBOOST_INTEROPERABLE_23022003THW_HPP