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

Function utf32to8

include/utf8cpp/unchecked.h:160–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158
159 template <typename octet_iterator, typename u32bit_iterator>
160 octet_iterator utf32to8 (u32bit_iterator start, u32bit_iterator end, octet_iterator result)
161 {
162 while (start != end)
163 result = utf8::unchecked::append(*(start++), result);
164
165 return result;
166 }
167
168 template <typename octet_iterator, typename u32bit_iterator>
169 u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result)

Callers

nothing calls this directly

Calls 1

appendFunction · 0.70

Tested by

no test coverage detected