25 template <
typename T, std::
size_t N>
26 std::string vectorRep(Vector<T, N> in) {
28 ss <<
"Vec" << N << internal::typeCharRep<T>() <<
" {";
30 for(
int i = 0; i < N; ++i) {
51 ss << internal::numberToRep(in.data[i]);
63 template <
typename T, std::
size_t N>
64 std::ostream& operator<<(std::ostream& out, const Vector<T, N>& vec) {
65 return (out << vectorRep(vec));
This file will define Vector and various vector functions.