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

Function vprint

extlibs/fmt/include/fmt/color.h:500–506  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

498
499template <typename S, typename Char = char_t<S>>
500void vprint(std::FILE* f, const text_style& ts, const S& format,
501 basic_format_args<buffer_context<Char>> args) {
502 basic_memory_buffer<Char> buf;
503 internal::vformat_to(buf, ts, to_string_view(format), args);
504 buf.push_back(Char(0));
505 internal::fputs(buf.data(), f);
506}
507
508/**
509 Formats a string and prints it to the specified file stream using ANSI

Callers 4

printFunction · 0.70
vprintMethod · 0.70
printMethod · 0.70
printFunction · 0.70

Calls 5

fputsFunction · 0.85
vformat_toFunction · 0.70
to_string_viewFunction · 0.70
push_backMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected