]> git.donarmstrong.com Git - rsem.git/blob - boost/fusion/sequence/comparison/less.hpp
Updated boost to v1.55.0
[rsem.git] / boost / fusion / sequence / comparison / less.hpp
1 /*=============================================================================
2     Copyright (c) 1999-2003 Jaakko Jarvi
3     Copyright (c) 2001-2011 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_LESS_05052005_0432)
9 #define FUSION_LESS_05052005_0432
10
11 #include <boost/fusion/sequence/intrinsic/begin.hpp>
12 #include <boost/fusion/sequence/intrinsic/end.hpp>
13 #include <boost/fusion/sequence/intrinsic/size.hpp>
14 #include <boost/fusion/sequence/comparison/detail/less.hpp>
15 #include <boost/fusion/sequence/comparison/enable_comparison.hpp>
16
17 namespace boost { namespace fusion
18 {
19     template <typename Seq1, typename Seq2>
20     inline bool
21     less(Seq1 const& a, Seq2 const& b)
22     {
23         return detail::sequence_less<Seq1 const, Seq2 const>::
24             call(fusion::begin(a), fusion::begin(b));
25     }
26
27     namespace operators
28     {
29         template <typename Seq1, typename Seq2>
30         inline typename
31             boost::enable_if<
32                 traits::enable_comparison<Seq1, Seq2>
33               , bool
34             >::type
35         operator<(Seq1 const& a, Seq2 const& b)
36         {
37             return fusion::less(a, b);
38         }
39     }
40     using operators::operator<;
41 }}
42
43 #endif