17 #ifndef PNDFTSARRAYIO_H 18 #define PNDFTSARRAYIO_H 25 static const char *
const green =
"\033[1;40;32m";
26 static const char *
const yellow =
"\033[1;40;33m";
27 static const char *
const blue =
"\033[1;40;34m";
28 static const char *
const normal =
"\033[0m";
33 inline std::ostream &operator<<(std::ostream &out, const PndFTSArray<T> &a)
35 out << AnsiColor::blue <<
"{" << AnsiColor::normal;
36 for (
int i = 0;
i < a.Size(); ++
i) {
38 out << AnsiColor::blue <<
", " << AnsiColor::normal;
42 out << AnsiColor::blue <<
"}" << AnsiColor::normal;
45 #endif // ALIHLTARRAYIO_H