Shared/Base/Format.h file

Function Death::format(), Death::formatInto()

Namespaces

namespace Death
Shared root namespace.

Functions

template<class ... Args>
auto format(const char* format, const Args&... args) -> Containers::String
Formats a string.
template<class ... Args>
auto formatInto(Containers::MutableStringView buffer, const char* format, const Args&... args) -> std::size_t
Formats a string into an existing buffer.
template<class ... Args, std::size_t size>
auto formatInto(char(&buffer)[size], const char* format, const Args&... args) -> std::size_t