Commit graph

10 commits

Author SHA1 Message Date
080e3f1261 add functions to redirect input/output
those two multiply the output into a file:

void redirect_output(const char *filename);
void redirect_output(std::string const &filename)

those two read everything from a file:

redirect_input(const char *filename);
redirect_input(std::string const& filename);

both can be resetted using:

void reset_input();
reset_output();
2019-10-28 21:26:54 +01:00
9709a35f46 implement pair/tuple input 2019-10-10 14:28:35 +02:00
11b6ae9729 implement read() and print() functions for easier I/O 2019-10-10 14:05:52 +02:00
4b5a124aa1 print full function name 2019-10-07 14:29:45 +02:00
0aee7de352 fix emacs header in example.cpp 2019-10-07 13:18:15 +02:00
7fc2b533c7 fix constexpr under c++11 2019-10-06 21:55:47 +02:00
cca34a1ad7 dbg: allow empty argument list 2019-10-06 21:17:37 +02:00
daeda942ad use runtime function to pretty print type name 2019-10-06 20:56:37 +02:00
4d25fc25c4 fix pretty printer for recursive types 2019-10-06 18:37:37 +02:00
44aa8d060a initial commit 2019-10-06 16:45:29 +02:00