table of contents
std::ctype::classic_table(3) | C++ Standard Libary | std::ctype::classic_table(3) |
NAME¶
std::ctype::classic_table - std::ctype::classic_table
Synopsis¶
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> facets use this table for classification.
Example¶
This section is incomplete
Reason: no example
Category:¶
* Todo no example
2024.06.10 | http://cppreference.com |