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

Function utf8to32

include/utf8cpp/unchecked.h:169–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167
168 template <typename octet_iterator, typename u32bit_iterator>
169 u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result)
170 {
171 while (start < end)
172 (*result++) = utf8::unchecked::next(start);
173
174 return result;
175 }
176
177 // The iterator class
178 template <typename octet_iterator>

Callers

nothing calls this directly

Calls 1

nextFunction · 0.70

Tested by

no test coverage detected