3#ifndef TETL_CCTYPE_ISGRAPH_HPP
4#define TETL_CCTYPE_ISGRAPH_HPP
24[[nodiscard]]
constexpr auto isgraph(
int ch)
noexcept ->
int
31 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:19
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:24
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:22
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:19
constexpr auto isdigit(int ch) noexcept -> int
Checks if the given character is one of the 10 decimal digits: 0123456789.
Definition isdigit.hpp:15
Definition adjacent_find.hpp:8