MCPcopy Create free account
hub / github.com/Icinga/icinga2 / append

Function append

third-party/utf8cpp/source/utf8/checked.h:74–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72
73 template <typename octet_iterator>
74 octet_iterator append(uint32_t cp, octet_iterator result)
75 {
76 if (!utf8::internal::is_code_point_valid(cp))
77 throw invalid_code_point(cp);
78
79 return internal::append(cp, result);
80 }
81
82 template <typename octet_iterator, typename output_iterator>
83 output_iterator replace_invalid(octet_iterator start, octet_iterator end, output_iterator out, uint32_t replacement)

Callers 3

replace_invalidFunction · 0.70
utf16to8Function · 0.70
utf32to8Function · 0.70

Calls 2

is_code_point_validFunction · 0.85
invalid_code_pointClass · 0.85

Tested by

no test coverage detected