2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-10-08 05:14:59 +00:00
|
|
|
#ifndef SPROUT_UTILITY_PAIR_COMPARISON_HPP
|
|
|
|
#define SPROUT_UTILITY_PAIR_COMPARISON_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/pair/pair.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
2013-02-07 14:12:57 +00:00
|
|
|
template<typename T1, typename T2>
|
2012-10-08 05:14:59 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
operator==(sprout::pair<T1, T2> const& x, sprout::pair<T1, T2> const& y) {
|
|
|
|
return x.first == y.first && x.second == y.second;
|
|
|
|
}
|
2013-02-07 14:12:57 +00:00
|
|
|
template<typename T1, typename T2>
|
2012-10-08 05:14:59 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
operator!=(sprout::pair<T1, T2> const& x, sprout::pair<T1, T2> const& y) {
|
|
|
|
return !(x == y);
|
|
|
|
}
|
2013-02-07 14:12:57 +00:00
|
|
|
template<typename T1, typename T2>
|
2012-10-08 05:14:59 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
operator<(sprout::pair<T1, T2> const& x, sprout::pair<T1, T2> const& y) {
|
2013-02-07 14:12:57 +00:00
|
|
|
return ((x.first) < (y.first)) || (!((y.first) < (x.first)) && ((x.second) < (y.second)));
|
2012-10-08 05:14:59 +00:00
|
|
|
}
|
2013-02-07 14:12:57 +00:00
|
|
|
template<typename T1, typename T2>
|
2012-10-08 05:14:59 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
operator>(sprout::pair<T1, T2> const& x, sprout::pair<T1, T2> const& y) {
|
|
|
|
return y < x;
|
|
|
|
}
|
2013-02-07 14:12:57 +00:00
|
|
|
template<typename T1, typename T2>
|
2012-10-08 05:14:59 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
operator<=(sprout::pair<T1, T2> const& x, sprout::pair<T1, T2> const& y) {
|
|
|
|
return !(y < x);
|
|
|
|
}
|
2013-02-07 14:12:57 +00:00
|
|
|
template<typename T1, typename T2>
|
2012-10-08 05:14:59 +00:00
|
|
|
inline SPROUT_CONSTEXPR bool
|
|
|
|
operator>=(sprout::pair<T1, T2> const& x, sprout::pair<T1, T2> const& y) {
|
|
|
|
return !(x < y);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_UTILITY_PAIR_COMPARISON_HPP
|