file
Format.hFunction Corrade::
Namespaces
- namespace Corrade
- Root namespace.
- namespace Corrade::Utility
- Utilities.
Functions
-
template<class ... Args>auto format(const char* format, const Args&... args) -> Containers::String new in 2019.10
- Format a string.
-
template<class ... Args>auto formatInto(const Containers::MutableStringView& buffer, const char* format, const Args&... args) -> std::
size_t - Format a string into an existing buffer.
-
template<class ... Args, std::auto formatInto(char(&buffer)[size], const char* format, const Args&... args) -> std::
size_t size> size_t -
template<class ... Args>void formatInto(std::
FILE* file, const char* format, const Args&... args) - Format a string into a file.
-
template<class ... Args>void print(const char* format, const Args&... args)
- Print a string to the standard output.
-
template<class ... Args>void printError(const char* format, const Args&... args)
- Print a string to the standard error output.