27template <
typename T,
size_t N>
28using Array = std::array<T, N>;
36template <
typename T,
size_t N>
37std::ostream &
operator<<(std::ostream &os,
const Array<T, N> &array);
45template <
typename T,
size_t N>
46std::istream &
operator>>(std::istream &is, Array<T, N> &array);
49#include "cxx/Array.cxx"
std::ostream & operator<<(std::ostream &os, const Array< T, N > &array)
operator << stream operator to easily print an array, or save it to a file.
std::istream & operator>>(std::istream &is, Array< T, N > &array)
operator >> stream operator to easily read an array