MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / common_unicode_cpts_to_utf8

Function common_unicode_cpts_to_utf8

common/unicode.cpp:86–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86std::string common_unicode_cpts_to_utf8(const std::vector<uint32_t> & cps) {
87 std::string result;
88 for (size_t i = 0; i < cps.size(); ++i) {
89 result.append(common_unicode_cpt_to_utf8(cps[i]));
90 }
91 return result;
92}
93
94std::string common_unicode_cpt_to_utf8(uint32_t cpt) {
95 std::string result;

Callers 1

gbnf_excluding_patternFunction · 0.85

Calls 3

sizeMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected