printΒΆ
- group turbo_fmt_print
Functions
- template<typename... T> TURBO_FORCE_INLINE void print (format_string< T... > fmt, T &&... args)
Formats
argsaccording to specifications infmtand writes the output tostdout.Example:
Output:turbo::print("Elapsed time: {0:.2f} seconds", 1.23);
The print module is part of the turbo::format module.Elapsed time: 1.23 seconds