Sprout/sprout/utility/pair/comparison.hpp

41 lines
1.3 KiB
C++
Raw Normal View History

#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>
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>
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>
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)));
}
2013-02-07 14:12:57 +00:00
template<typename T1, typename T2>
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>
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>
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