]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/sequence/comparison/detail/not_equal_to.hpp
5e939675f3f25f5fd3193fb65d8a3e5c1132bcca
[rsem.git] / boost / fusion / sequence / comparison / detail / not_equal_to.hpp
1 /*=============================================================================
2     Copyright (c) 1999-2003 Jaakko Jarvi
3     Copyright (c) 2001-2006 Joel de Guzman
4
5     Distributed under the Boost Software License, Version 1.0. (See accompanying 
6     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 ==============================================================================*/
8 #if !defined(FUSION_NOT_EQUAL_TO_05052005_1141)
9 #define FUSION_NOT_EQUAL_TO_05052005_1141
10
11 #include <boost/mpl/bool.hpp>
12 #include <boost/fusion/iterator/deref.hpp>
13 #include <boost/fusion/iterator/next.hpp>
14 #include <boost/fusion/iterator/equal_to.hpp>
15
16 namespace boost { namespace fusion { namespace detail
17 {
18     template <typename Seq1, typename Seq2, bool same_size>
19     struct sequence_not_equal_to
20     {
21         typedef typename result_of::end<Seq1>::type end1_type;
22         typedef typename result_of::end<Seq2>::type end2_type;
23
24         template <typename I1, typename I2>
25         static bool
26         call(I1 const&, I2 const&, mpl::true_)
27         {
28             return false;
29         }
30
31         template <typename I1, typename I2>
32         static bool
33         call(I1 const& a, I2 const& b, mpl::false_)
34         {
35             return *a != *b
36                 || call(fusion::next(a), fusion::next(b));
37         }
38
39         template <typename I1, typename I2>
40         static bool
41         call(I1 const& a, I2 const& b)
42         {
43             typename result_of::equal_to<I1, end1_type>::type eq;
44             return call(a, b, eq);
45         }
46     };
47
48     template <typename Seq1, typename Seq2>
49     struct sequence_not_equal_to<Seq1, Seq2, false>
50     {
51         template <typename I1, typename I2>
52         static bool
53         call(I1 const& a, I2 const& b)
54         {
55             return true;
56         }
57     };
58 }}}
59
60 #endif