std::ctype_base (3) - Linux Manuals
std::ctype_base: std::ctype_base
NAME
std::ctype_base - std::ctype_base
Synopsis
Defined in header <locale>
class ctype_base;
The class std::ctype_base lists the character classification categories which are inherited by the std::ctype facets.
Member types
mask (typedef)
Member constants
space the value of mask identifying whitespace character classification
[static]
print the value of mask identifying printable character classification
[static]
cntrl the value of mask identifying control character classification
[static]
upper the value of mask identifying uppercase character classification
[static]
lower the value of mask identifying lowercase character classification
[static]
alpha the value of mask identifying alphabetic character classification
[static]
digit the value of mask identifying digit character classification
[static]
punct the value of mask identifying punctuation character classification
[static]
xdigit the value of mask identifying hexadecimal digit character classification
[static]
blank the value of mask identifying blank character classification
[static] (C++11)
alnum alpha | digit
[static]
graph alnum | punct
[static]
See also
ctype (class template)
ctype<char> (class template specialization)
ctype_byname (class template)