27 template <
class T,
size_t N >
28 inline std::ostream&
operator<< (std::ostream& s,
const std::array<T,N>& e)
37 for (
size_t i=0; i<N-1; i++) s << e[i] <<
",";
48 template<
typename T, std::
size_t n>
std::ostream & operator<<(std::ostream &s, const std::array< T, N > &e)
Output operator for array.
Definition array.hh:28
std::array< T, n > fill_array(const T &t)
Create an array and fill it with copies of the provided value.
Definition array.hh:49
Dune namespace.
Definition alignment.hh:11
std::array< typename std::common_type< Args... >::type, sizeof...(Args)> make_array(const Args &... args)
Create and initialize an array.
Definition make_array.hh:23