29 #ifndef PNDFTSARRAYIO_H 30 #define PNDFTSARRAYIO_H 37 static const char *
const green =
"\033[1;40;32m";
38 static const char *
const yellow =
"\033[1;40;33m";
39 static const char *
const blue =
"\033[1;40;34m";
40 static const char *
const normal =
"\033[0m";
45 inline std::ostream &operator<<(std::ostream &out, const PndFTSArray<T> &a)
47 out << AnsiColor::blue <<
"{" << AnsiColor::normal;
48 for (
int i = 0;
i < a.Size(); ++
i) {
50 out << AnsiColor::blue <<
", " << AnsiColor::normal;
54 out << AnsiColor::blue <<
"}" << AnsiColor::normal;
57 #endif // ALIHLTARRAYIO_H