Makes printing stuff to console in C++ is just fun! be it anything, set, map, ...
print all kinds of stl containers to console, debug recrsion by printing recursion call stack, plug and play C++ utlity with 3 globally vailable void functions _w(), _e(), _b()
function _w() : overloads << os stream operator for printing all kinds of stl containers, if nested identifies the nesting and prints inner containers recursively
or in simple words, _w() prints anything and everything that is passed inn, space separated, after spacing
- feature: includes string spacing, that is also modified by recursive function
todo: cant print those containers initialised with custom compare functions, so, containers like : set<int, decltype(somefunction)*> cant be printed yet
functions:
these fns use verdiac macros to get the name of calling function to be printed to console.