11 #ifndef TLX_LOGGER_ARRAY_HEADER 12 #define TLX_LOGGER_ARRAY_HEADER 20 template <
typename T,
size_t N>
24 static void print(std::ostream& os,
const std::array<T, N>& data) {
26 for (
typename std::array<T, N>::const_iterator it = data.begin();
27 it != data.end(); ++it)
29 if (it != data.begin()) os <<
',';
38 #endif // !TLX_LOGGER_ARRAY_HEADER