MCPcopy Create free account
hub / github.com/boostorg/parser / high_surrogate

Function high_surrogate

include/boost/parser/detail/text/transcode_iterator.hpp:147–150  ·  view source on GitHub ↗

Returns true iff `c` is a Unicode high surrogate. */

Source from the content-addressed store, hash-verified

145
146 /** Returns true iff `c` is a Unicode high surrogate. */
147 inline constexpr bool high_surrogate(char32_t c)
148 {
149 return high_surrogate_min <= c && c <= high_surrogate_max;
150 }
151
152 /** Returns true iff `c` is a Unicode low surrogate. */
153 inline constexpr bool low_surrogate(char32_t c)

Callers 5

json.cppFile · 0.85
callback_json.cppFile · 0.85
utf16_code_unitsFunction · 0.85
assign_16_to_32_insertFunction · 0.85
assign_16_to_8_insertFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected