forked from boostorg/fusion
@ -14,28 +14,21 @@
|
|||||||
#include <boost/fusion/support/sequence_base.hpp>
|
#include <boost/fusion/support/sequence_base.hpp>
|
||||||
#include <boost/fusion/support/is_sequence.hpp>
|
#include <boost/fusion/support/is_sequence.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/type_traits/is_convertible.hpp>
|
|
||||||
|
|
||||||
namespace boost { namespace fusion { namespace detail
|
namespace boost { namespace fusion { namespace traits
|
||||||
{
|
{
|
||||||
template <typename Sequence>
|
template <typename Seq1, typename Seq2, typename Enable = void>
|
||||||
struct is_native_fusion_sequence
|
|
||||||
: is_convertible<Sequence, detail::from_sequence_convertible_type>
|
|
||||||
{};
|
|
||||||
|
|
||||||
template <typename Seq1, typename Seq2>
|
|
||||||
struct enable_equality
|
struct enable_equality
|
||||||
: mpl::or_<traits::is_sequence<Seq1>, traits::is_sequence<Seq2> >
|
: mpl::or_<traits::is_sequence<Seq1>, traits::is_sequence<Seq2> >
|
||||||
{};
|
{};
|
||||||
|
|
||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2, typename Enable = void>
|
||||||
struct enable_comparison
|
struct enable_comparison
|
||||||
: mpl::and_<
|
: mpl::and_<
|
||||||
mpl::or_<traits::is_sequence<Seq1>, traits::is_sequence<Seq2> >
|
mpl::or_<traits::is_sequence<Seq1>, traits::is_sequence<Seq2> >
|
||||||
, mpl::equal_to<result_of::size<Seq1>, result_of::size<Seq2> >
|
, mpl::equal_to<result_of::size<Seq1>, result_of::size<Seq2> >
|
||||||
>
|
>
|
||||||
{};
|
{};
|
||||||
|
|
||||||
}}}
|
}}}
|
||||||
|
|
||||||
#endif
|
#endif
|
@ -12,7 +12,7 @@
|
|||||||
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/equal_to.hpp>
|
#include <boost/fusion/sequence/comparison/detail/equal_to.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/enable_comparison.hpp>
|
#include <boost/fusion/sequence/comparison/enable_comparison.hpp>
|
||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
|
|
||||||
#if defined (BOOST_MSVC)
|
#if defined (BOOST_MSVC)
|
||||||
@ -38,7 +38,7 @@ namespace boost { namespace fusion
|
|||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2>
|
||||||
inline typename
|
inline typename
|
||||||
enable_if<
|
enable_if<
|
||||||
detail::enable_equality<Seq1, Seq2>
|
traits::enable_equality<Seq1, Seq2>
|
||||||
, bool
|
, bool
|
||||||
>::type
|
>::type
|
||||||
operator==(Seq1 const& a, Seq2 const& b)
|
operator==(Seq1 const& a, Seq2 const& b)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/enable_comparison.hpp>
|
#include <boost/fusion/sequence/comparison/enable_comparison.hpp>
|
||||||
|
|
||||||
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
||||||
#include <boost/fusion/sequence/comparison/detail/greater.hpp>
|
#include <boost/fusion/sequence/comparison/detail/greater.hpp>
|
||||||
@ -38,7 +38,7 @@ namespace boost { namespace fusion
|
|||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2>
|
||||||
inline typename
|
inline typename
|
||||||
enable_if<
|
enable_if<
|
||||||
detail::enable_comparison<Seq1, Seq2>
|
traits::enable_comparison<Seq1, Seq2>
|
||||||
, bool
|
, bool
|
||||||
>::type
|
>::type
|
||||||
operator>(Seq1 const& a, Seq2 const& b)
|
operator>(Seq1 const& a, Seq2 const& b)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/enable_comparison.hpp>
|
#include <boost/fusion/sequence/comparison/enable_comparison.hpp>
|
||||||
|
|
||||||
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
||||||
#include <boost/fusion/sequence/comparison/detail/greater_equal.hpp>
|
#include <boost/fusion/sequence/comparison/detail/greater_equal.hpp>
|
||||||
@ -38,7 +38,7 @@ namespace boost { namespace fusion
|
|||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2>
|
||||||
inline typename
|
inline typename
|
||||||
enable_if<
|
enable_if<
|
||||||
detail::enable_comparison<Seq1, Seq2>
|
traits::enable_comparison<Seq1, Seq2>
|
||||||
, bool
|
, bool
|
||||||
>::type
|
>::type
|
||||||
operator>=(Seq1 const& a, Seq2 const& b)
|
operator>=(Seq1 const& a, Seq2 const& b)
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/less.hpp>
|
#include <boost/fusion/sequence/comparison/detail/less.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/enable_comparison.hpp>
|
#include <boost/fusion/sequence/comparison/enable_comparison.hpp>
|
||||||
|
|
||||||
namespace boost { namespace fusion
|
namespace boost { namespace fusion
|
||||||
{
|
{
|
||||||
@ -29,7 +29,7 @@ namespace boost { namespace fusion
|
|||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2>
|
||||||
inline typename
|
inline typename
|
||||||
enable_if<
|
enable_if<
|
||||||
detail::enable_comparison<Seq1, Seq2>
|
traits::enable_comparison<Seq1, Seq2>
|
||||||
, bool
|
, bool
|
||||||
>::type
|
>::type
|
||||||
operator<(Seq1 const& a, Seq2 const& b)
|
operator<(Seq1 const& a, Seq2 const& b)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/enable_comparison.hpp>
|
#include <boost/fusion/sequence/comparison/enable_comparison.hpp>
|
||||||
|
|
||||||
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
||||||
#include <boost/fusion/sequence/comparison/detail/less_equal.hpp>
|
#include <boost/fusion/sequence/comparison/detail/less_equal.hpp>
|
||||||
@ -65,7 +65,7 @@ namespace boost { namespace fusion
|
|||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2>
|
||||||
inline typename
|
inline typename
|
||||||
enable_if<
|
enable_if<
|
||||||
detail::enable_comparison<Seq1, Seq2>
|
traits::enable_comparison<Seq1, Seq2>
|
||||||
, bool
|
, bool
|
||||||
>::type
|
>::type
|
||||||
operator<=(Seq1 const& a, Seq2 const& b)
|
operator<=(Seq1 const& a, Seq2 const& b)
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
#include <boost/fusion/sequence/intrinsic/begin.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
#include <boost/fusion/sequence/intrinsic/end.hpp>
|
||||||
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
#include <boost/fusion/sequence/intrinsic/size.hpp>
|
||||||
#include <boost/fusion/sequence/comparison/detail/enable_comparison.hpp>
|
#include <boost/fusion/sequence/comparison/enable_comparison.hpp>
|
||||||
|
|
||||||
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
#if defined(FUSION_DIRECT_OPERATOR_USAGE)
|
||||||
#include <boost/fusion/sequence/comparison/detail/not_equal_to.hpp>
|
#include <boost/fusion/sequence/comparison/detail/not_equal_to.hpp>
|
||||||
@ -41,7 +41,7 @@ namespace boost { namespace fusion
|
|||||||
template <typename Seq1, typename Seq2>
|
template <typename Seq1, typename Seq2>
|
||||||
inline typename
|
inline typename
|
||||||
enable_if<
|
enable_if<
|
||||||
detail::enable_equality<Seq1, Seq2>
|
traits::enable_equality<Seq1, Seq2>
|
||||||
, bool
|
, bool
|
||||||
>::type
|
>::type
|
||||||
operator!=(Seq1 const& a, Seq2 const& b)
|
operator!=(Seq1 const& a, Seq2 const& b)
|
||||||
|
@ -63,6 +63,11 @@ namespace boost { namespace fusion
|
|||||||
typename fusion::detail::tag_of<T>::type
|
typename fusion::detail::tag_of<T>::type
|
||||||
>::template apply<T>
|
>::template apply<T>
|
||||||
{};
|
{};
|
||||||
|
|
||||||
|
template <typename Sequence, typename Enable = void>
|
||||||
|
struct is_native_fusion_sequence
|
||||||
|
: is_convertible<Sequence, detail::from_sequence_convertible_type>
|
||||||
|
{};
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user