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

Function compile_format_string

extlibs/fmt/include/fmt/compile.h:156–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

154// Compiles a format string and invokes handler(part) for each parsed part.
155template <bool IS_CONSTEXPR, typename Char, typename PartHandler>
156FMT_CONSTEXPR void compile_format_string(basic_string_view<Char> format_str,
157 PartHandler handler) {
158 parse_format_string<IS_CONSTEXPR>(
159 format_str,
160 format_string_compiler<Char, PartHandler>(format_str, handler));
161}
162
163template <typename Range, typename Context, typename Id>
164void format_arg(

Callers

nothing calls this directly

Calls 5

format_errorFunction · 0.85
make_textFunction · 0.85
unknown_formatClass · 0.85
parse_textFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected