4#ifndef TETL_CWCTYPE_ISWGRAPH_HPP
5#define TETL_CWCTYPE_ISWGRAPH_HPP
7#include <etl/_cwctype/iswdigit.hpp>
8#include <etl/_cwctype/iswlower.hpp>
9#include <etl/_cwctype/iswpunct.hpp>
10#include <etl/_cwctype/iswupper.hpp>
33 return static_cast<
int>(isDigit || isLower || isUpper || isPunct);
constexpr auto iswupper(wint_t ch) noexcept -> int
Checks if the given wide character is an uppercase letter, i.e. one of ABCDEFGHIJKLMNOPQRSTUVWXYZ or ...
Definition iswupper.hpp:21
constexpr auto iswdigit(wint_t ch) noexcept -> int
Checks if the given wide character corresponds (if narrowed) to one of the ten decimal digit characte...
Definition iswdigit.hpp:19
constexpr auto iswlower(wint_t ch) noexcept -> int
Checks if the given wide character is a lowercase letter, i.e. one of abcdefghijklmnopqrstuvwxyz or a...
Definition iswlower.hpp:21
constexpr auto iswgraph(wint_t ch) noexcept -> int
Checks if the given wide character has a graphical representation, i.e. it is either a number (012345...
Definition iswgraph.hpp:27
constexpr auto iswpunct(wint_t ch) noexcept -> int
Checks if the given wide character is a punctuation character, i.e. it is one of !...
Definition iswpunct.hpp:21
Definition adjacent_find.hpp:9