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

Function parse_text

extlibs/fmt/include/fmt/compile.h:441–446  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

439
440template <typename Char>
441constexpr size_t parse_text(basic_string_view<Char> str, size_t pos) {
442 for (size_t size = str.size(); pos != size; ++pos) {
443 if (str[pos] == '{' || str[pos] == '}') break;
444 }
445 return pos;
446}
447
448template <typename Args, size_t POS, int ID, typename S>
449constexpr auto compile_format_string(S format_str);

Callers 1

compile_format_stringFunction · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected