implementation of the stl array class (a static array) More...
Go to the source code of this file.
Classes | |
class | Dune::array< T, N > |
Simple fixed size array class. This replaces std::array, if that is not available. More... | |
Namespaces | |
namespace | Dune |
Dune namespace. | |
Functions | |
template<class T , int N> | |
bool | Dune::operator< (const array< T, N > &a, const array< T, N > &b) |
template<class T , int N> | |
bool | Dune::operator> (const array< T, N > &a, const array< T, N > &b) |
template<class T , int N> | |
bool | Dune::operator<= (const array< T, N > &a, const array< T, N > &b) |
template<class T , int N> | |
bool | Dune::operator>= (const array< T, N > &a, const array< T, N > &b) |
template<class T , int N> | |
std::ostream & | Dune::operator<< (std::ostream &s, array< T, N > e) |
Output operator for array. |
implementation of the stl array class (a static array)