MCPcopy Create free account
hub / github.com/cinder/Cinder / utf32to8

Function utf32to8

include/utf8cpp/checked.h:249–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

247
248 template <typename octet_iterator, typename u32bit_iterator>
249 octet_iterator utf32to8 (u32bit_iterator start, u32bit_iterator end, octet_iterator result)
250 {
251 while (start != end)
252 result = utf8::append(*(start++), result);
253
254 return result;
255 }
256
257 template <typename octet_iterator, typename u32bit_iterator>
258 u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result)

Callers 1

toUtf8Function · 0.50

Calls 1

appendFunction · 0.70

Tested by

no test coverage detected