std::ctype<char>::classic_table
Min standard notice:
Header: <locale>
Returns the classification table that matches the classification used by the minimal “C” locale.
# Declarations
static const mask* classic_table() throw();
(until C++11)
static const mask* classic_table() noexcept;
(since C++11)
# Return value
A pointer to the first element in the classification table (which is an array of size std::ctype
# Notes
Default-constructed std::ctype
# Example
This section is incompleteReason: no example