4#ifndef TETL_CCTYPE_ISGRAPH_HPP
5#define TETL_CCTYPE_ISGRAPH_HPP
7#include <etl/_cctype/isdigit.hpp>
8#include <etl/_cctype/islower.hpp>
9#include <etl/_cctype/ispunct.hpp>
10#include <etl/_cctype/isupper.hpp>
32 return static_cast<
int>(isDigit || isLower || isUpper || isPunct);
constexpr auto isupper(int ch) noexcept -> int
Checks if the given character is classified as a uppercase character according to the default C local...
Definition isupper.hpp:20
constexpr auto isgraph(int ch) noexcept -> int
Checks if the given character is graphic (has a graphical representation) as classified by the defaul...
Definition isgraph.hpp:25
constexpr auto ispunct(int ch) noexcept -> int
Checks if the given character is a punctuation character as classified by the current C locale.
Definition ispunct.hpp:23
constexpr auto islower(int ch) noexcept -> int
Checks if the given character is classified as a lowercase character according to the default C local...
Definition islower.hpp:20
constexpr auto isdigit(int ch) noexcept -> int
Checks if the given character is one of the 10 decimal digits: 0123456789.
Definition isdigit.hpp:16
Definition adjacent_find.hpp:9