MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / print

Function print

extlibs/fmt/include/fmt/core.h:1758–1765  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1756 */
1757template <typename S, typename... Args, typename Char = char_t<S>>
1758inline void print(std::FILE* f, const S& format_str, Args&&... args) {
1759 return internal::is_unicode<Char>()
1760 ? vprint(f, to_string_view(format_str),
1761 internal::make_args_checked<Args...>(format_str, args...))
1762 : internal::vprint_mojibake(
1763 f, to_string_view(format_str),
1764 internal::make_args_checked<Args...>(format_str, args...));
1765}
1766
1767/**
1768 \rst

Callers 3

assert_failFunction · 0.70
printMethod · 0.50
convertMethod · 0.50

Calls 3

vprint_mojibakeFunction · 0.85
vprintFunction · 0.70
to_string_viewFunction · 0.70

Tested by

no test coverage detected