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

Function utf8to32

include/utf8cpp/checked.h:258–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256
257 template <typename octet_iterator, typename u32bit_iterator>
258 u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result)
259 {
260 while (start != end)
261 (*result++) = utf8::next(start, end);
262
263 return result;
264 }
265
266 // The iterator class
267 template <typename octet_iterator>

Callers 1

toUtf32Function · 0.50

Calls 1

nextFunction · 0.70

Tested by

no test coverage detected