std::ctype<char>::table
Min standard notice:
Header: <locale>
Returns the classification table that was provided in the constructor of this instance of std::ctype
# Declarations
const mask* table() const throw();
(until C++11)
const mask* table() const noexcept;
(since C++11)
# Return value
A pointer to the first element in the classification table (which an array of size std::ctype
# Example
This section is incompleteReason: no example