std::ctype<char>::classic_table
From cppreference.com
< cpp | locale | ctype char
C++
Text processing library
| Localization library | |||||||||||||||||||||||||
| Regular expressions library (C++11) | |||||||||||||||||||||||||
| Formatting library (C++20) | |||||||||||||||||||||||||
| Null-terminated sequence utilities | |||||||||||||||||||||||||
| Byte strings | |||||||||||||||||||||||||
| Multibyte strings | |||||||||||||||||||||||||
| Wide strings | |||||||||||||||||||||||||
| Primitive numeric conversions | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
| Text encoding identifications | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
Localization library
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::ctype
| Member functions | ||||
| Member functions of ctype<char> | ||||
ctype<char>::classic_table | ||||
Defined in header <locale>
|
||
|
static
const mask* classic_table(
)
throw
(
)
;
|
(until C++11) | |
|
static
const mask* classic_table(
)
noexcept
;
|
(since C++11) | |
Returns the classification table that matches the classification used by the minimal "C" locale.
Parameters
(none)
Return value
A pointer to the first element in the classification table (which is an array of size std::ctype<char>::table_size).
Notes
Default-constructed std::ctype<char>
Example
| This section is incomplete Reason: no example |