MCPcopy Create free account
hub / github.com/couchbase/fleece / to_utf32

Method to_utf32

Fleece/Support/diff_match_patch.hh:2536–2540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2534struct diff_match_patch_utf32_direct {
2535 typedef utf32_type utf32_t;
2536 template <class iterator> static iterator to_utf32(iterator i, iterator /*end*/, utf32_t& u)
2537 {
2538 u = *i++;
2539 return i;
2540 }
2541 template <class iterator> static iterator from_utf32(utf32_t u, iterator o)
2542 {
2543 *o++ = static_cast<char_t>(u);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected