| 20 | inline constexpr char32_t kUnicodeReplacementCharacter = 0xfffd; |
| 21 | |
| 22 | constexpr bool UnicodeIsValid(char32_t code_point) { |
| 23 | return code_point < 0xd800 || (code_point > 0xdfff && code_point <= 0x10ffff); |
| 24 | } |
| 25 | |
| 26 | } // namespace cel::internal |
| 27 |
no outgoing calls
no test coverage detected