|
CIOF v1.0.0-build
Char Input Output Format - A simple Input and Output utility library
|
Implementation functions. More...
Functions | |
| template<typename T> | |
| void | __out (const OutputType &_outType, T _t) |
| Output the with its corresponding type either to: | |
| template<typename T, typename ... Args> | |
| void | __out (const OutputType &_outType, T _t, Args ... _args) |
| Output the with its corresponding type either to: | |
| template<typename T, typename ... Args> | |
| std::string | parse (T _fmt, Args ... _args) |
| Parse the params for printing and echoing. | |
| template<typename T> | |
| std::string | toString (const T &_val) |
| Convert to string safely. | |
Implementation functions.
| void ciof::impl::__out | ( | const OutputType & | _outType, |
| T | _t ) |
Output the with its corresponding type either to:
| _outType | Type for OUT, ERR or LOG |
| _t | Text to add |
| void ciof::impl::__out | ( | const OutputType & | _outType, |
| T | _t, | ||
| Args ... | _args ) |
Output the with its corresponding type either to:
| _outType | Type for OUT, ERR or LOG |
| _t | Text to add |
| _args | More text to add |
| std::string ciof::impl::parse | ( | T | _fmt, |
| Args ... | _args ) |
Parse the params for printing and echoing.
| std::string ciof::impl::toString | ( | const T & | _val | ) |
Convert to string safely.
| _val | any convertable type to string |