std::text_encoding::name
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::name | ||||
| Helpers | ||||
| Non-member functions | ||||
| Member types | ||||
| Helper classes | ||||
| constexpr const char* name() const noexcept; |
(since C++26) | |
Returns the primary name of *this. Equivalent to return name_;.
Accessing elements of name_ outside of the range [name(), name() + std::strlen(name() + 1) is undefined behavior.
[edit] Parameters
(none)
[edit] Return value
Primary name name_ that is represented by a null-terminated byte string.
[edit] Example
| This section is incomplete Reason: no example |