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

Function next_code_point

extlibs/fmt/include/fmt/format.h:2403–2409  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2401
2402template <typename Char>
2403FMT_CONSTEXPR const Char* next_code_point(const Char* begin, const Char* end) {
2404 if (const_check(sizeof(Char) != 1) || (*begin & 0x80) == 0) return begin + 1;
2405 do {
2406 ++begin;
2407 } while (begin != end && (*begin & 0xc0) == 0x80);
2408 return begin;
2409}
2410
2411// Parses fill and alignment.
2412template <typename Char, typename Handler>

Callers 1

parse_alignFunction · 0.85

Calls 1

const_checkFunction · 0.85

Tested by

no test coverage detected