#ifndef SPROUT_ARRAY_COMPARISON_HPP #define SPROUT_ARRAY_COMPARISON_HPP #include #include #include #include #include namespace sprout { // // operator== // operator!= // operator< // operator> // operator<= // operator>= // template inline SPROUT_CONSTEXPR bool operator==(sprout::array const& lhs, sprout::array const& rhs) { return sprout::equal(lhs.begin(), lhs.end(), rhs.begin()); } template inline SPROUT_CONSTEXPR bool operator!=(sprout::array const& lhs, sprout::array const& rhs) { return !(lhs == rhs); } template inline SPROUT_CONSTEXPR bool operator<(sprout::array const& lhs, sprout::array const& rhs) { return sprout::lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end()); } template inline SPROUT_CONSTEXPR bool operator>(sprout::array const& lhs, sprout::array const& rhs) { return rhs < lhs; } template inline SPROUT_CONSTEXPR bool operator<=(sprout::array const& lhs, sprout::array const& rhs) { return !(rhs < lhs); } template inline SPROUT_CONSTEXPR bool operator>=(sprout::array const& lhs, sprout::array const& rhs) { return !(lhs < rhs); } } // namespace sprout #endif // #ifndef SPROUT_ARRAY_COMPARISON_HPP