| 254 | }(); |
| 255 | |
| 256 | ada_really_inline constexpr bool is_forbidden_host_code_point( |
| 257 | const char c) noexcept { |
| 258 | return is_forbidden_host_code_point_table[uint8_t(c)]; |
| 259 | } |
| 260 | |
| 261 | constexpr static std::array<uint8_t, 256> is_forbidden_domain_code_point_table = |
| 262 | []() consteval { |
nothing calls this directly
no outgoing calls
no test coverage detected