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