Skip to content
Snippets Groups Projects
Commit 1b4b554a authored by Martin Nolte's avatar Martin Nolte
Browse files

implement comparison operators as required by TR1

[[Imported from SVN: r5652]]
parent cb5ebde0
No related branches found
No related tags found
No related merge requests found
......@@ -14,9 +14,10 @@
// Include system implementation of array class if present
#ifdef HAVE_ARRAY
#include <array>
#endif
#ifdef HAVE_TR1_ARRAY
#elif defined HAVE_TR1_ARRAY
#include <tr1/array>
#else
#include <algorithm>
#endif
......@@ -122,6 +123,35 @@ namespace Dune
protected:
T a[(N > 0) ? N : 1];
};
// Comparison Operators (see [lib.container.requirements])
// -------------------------------------------------------
template< class T, int N >
inline bool operator< ( const array< T, N > &a, const array< T, N > &b )
{
return std::lexicographical_compare( a.begin(), a.end(), b.begin(), b.end() );
}
template< class T, int N >
inline bool operator> ( const array< T, N > &a, const array< T, N > &b )
{
return b < a;
}
template< class T, int N >
inline bool operator<= ( const array< T, N > &a, const array< T, N > &b )
{
return !(a > b);
}
template< class T, int N >
inline bool operator>= ( const array< T, N > &a, const array< T, N > &b )
{
return !(a < b);
}
#endif
//! Output operator for array
template <class T, int N>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment