std::text_encoding::environment_is
From cppreference.com
< cpp | text | text encoding
C++
Text processing library
| 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 | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
std::text_encoding
| Member functions | ||||
| Creation | ||||
| Observers | ||||
text_encoding::environment_is | ||||
| Helpers | ||||
| Non-member functions | ||||
| Member types | ||||
| Helper classes | ||||
| template< id I > static bool environment_is(); |
(since C++26) | |
Checks whether the environment encoding is equal to the encoding whose MIBenum value is the specified value I. A call to this function is equivalent to return environment() == I;.
This function is deleted unless the CHAR_BIT is 8.
[edit] Template parameters
| I | - | a text_encoding::id whose value to compare
|
[edit] Return value
true if environment() is equal to I; false otherwise.
[edit] Example
| This section is incomplete Reason: no example |