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