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