| 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 | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Member functions of ctype<char> | ||||
ctype<char>::table | ||||
Defined in header <locale> | ||
const mask* table()constthrow(); | (until C++11) | |
const mask* table()constnoexcept; | (since C++11) | |
Returns the classification table that was provided in the constructor of this instance ofstd::ctype<char>, or returns a copy ofclassic_table() if none was provided.
(none)
A pointer to the first element in the classification table (which an array of sizestd::ctype<char>::table_size).
| This section is incomplete Reason: no example |