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

Function low_surrogate

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

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

Source from the content-addressed store, hash-verified

151
152 /** Returns true iff `c` is a Unicode low surrogate. */
153 inline constexpr bool low_surrogate(char32_t c)
154 {
155 return low_surrogate_min <= c && c <= low_surrogate_max;
156 }
157
158 /** Returns true iff `c` is a Unicode reserved noncharacter.
159

Callers 12

json.cppFile · 0.85
callback_json.cppFile · 0.85
transcode_to_8Function · 0.85
transcode_to_32Function · 0.85
utf16_code_unitsFunction · 0.85
find_invalid_encodingFunction · 0.85
starts_encodedFunction · 0.85
ends_encodedFunction · 0.85
assign_16_to_32_insertFunction · 0.85
assign_16_to_8_insertFunction · 0.85
decode_code_pointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected