module
is_non_ascii_code_point()Functions
- auto is_non_ascii_code_point(char c) -> bool constexpr noexcept
- Returns true if a character is a valid code point from outside the ASCII range.
- auto is_non_ascii_code_point(char16_t c) -> bool constexpr noexcept
- Returns true if a UTF-16 code unit is a valid code point from outside the ASCII range.
- auto is_non_ascii_code_point(char32_t c) -> bool constexpr noexcept
- Returns true if a UTF-32 code unit is a valid code point from outside the ASCII range.
- auto is_non_ascii_code_point(char8_t c) -> bool constexpr noexcept
- Returns true if a UTF-8 code unit is a valid code point from outside the ASCII range.
- auto is_non_ascii_code_point(unsigned char c) -> bool constexpr noexcept
- Returns true if a character is a valid code point from outside the ASCII range.
- auto is_non_ascii_code_point(wchar_t c) -> bool constexpr noexcept
- Returns true if a wide character is a valid code point from outside the ASCII range.
Function documentation
bool is_non_ascii_code_point(char c) constexpr noexcept
#include <muu/chars.h>
Returns true if a character is a valid code point from outside the ASCII range.
bool is_non_ascii_code_point(char16_t c) constexpr noexcept
#include <muu/chars.h>
Returns true if a UTF-16 code unit is a valid code point from outside the ASCII range.
bool is_non_ascii_code_point(char32_t c) constexpr noexcept
#include <muu/chars.h>
Returns true if a UTF-32 code unit is a valid code point from outside the ASCII range.
bool is_non_ascii_code_point(char8_t c) constexpr noexcept
#include <muu/chars.h>
Returns true if a UTF-8 code unit is a valid code point from outside the ASCII range.
bool is_non_ascii_code_point(unsigned char c) constexpr noexcept
#include <muu/chars.h>
Returns true if a character is a valid code point from outside the ASCII range.
bool is_non_ascii_code_point(wchar_t c) constexpr noexcept
#include <muu/chars.h>
Returns true if a wide character is a valid code point from outside the ASCII range.