std::ctype<char>::table

Defined in header <locale>
const mask* table() const;
(1)

Returns the classification table that was provided in the constructor of this instance of std::ctype<char>, or returns a copy of classic_table() if none was provided.

Parameters

(none).

Return value

A pointer to the first element in the classification table (which an array of size std::ctype<char>::table_size).

Exceptions

(none) (until C++11)
noexcept specification:
noexcept
(since C++11)

Example

doc_CPP
2016-10-11 10:02:14
Comments
Leave a Comment

Please login to continue.