|
NexusForce 1.0.0
A rigorously engineered full-stack C++ backend library.
|
控制台输入输出工具 更多...
类 | |
| class | neforce::sys_console |
| 系统控制台单例类 更多... | |
函数 | |
| template<typename... Args> | |
| void | neforce::print (Args &&... args) |
| 打印多个值 | |
| template<typename... Args> | |
| void | neforce::printc (const color &color, Args &&... args) |
| 带颜色打印多个值 | |
| template<typename... Args> | |
| void | neforce::println (Args &&... args) |
| 打印多个值并换行 | |
| template<typename... Args> | |
| void | neforce::printcln (const color &color, Args &&... args) |
| 带颜色打印多个值并换行 | |
| template<typename... Args> | |
| void | neforce::printf (const string_view fmt, Args &&... args) |
| 格式化打印 | |
| template<typename... Args> | |
| void | neforce::printfln (const string_view fmt, Args &&... args) |
| 格式化打印并换行 | |
| template<typename... Args> | |
| void | neforce::printcf (const color &color, const string_view fmt, Args &&... args) |
| 格式化颜色打印 | |
| template<typename... Args> | |
| void | neforce::printcfln (const color &color, const string_view fmt, Args &&... args) |
| 格式化颜色打印并换行 | |
| template<typename... Args> | |
| void | neforce::eprint (Args &&... args) |
| 打印多个值到错误流 | |
| template<typename... Args> | |
| void | neforce::eprintf (const string_view fmt, Args &&... args) |
| 格式化打印到错误流 | |
| template<typename... Args> | |
| void | neforce::eprintln (Args &&... args) |
| 打印多个值到错误流并换行 | |
| template<typename... Args> | |
| void | neforce::eprintfln (const string_view fmt, Args &&... args) |
| 格式化打印到错误流并换行 | |
变量 | |
| sys_console & | neforce::console |
| 全局控制台实例 | |
控制台输入输出工具