std::text_encoding::aliases
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::aliases | ||||
| Helpers | ||||
| Non-member functions | ||||
| Member types | ||||
| Helper classes | ||||
| constexpr aliases_view aliases() const noexcept; |
(since C++26) | |
Returns a non-empty range of type text_encoding::aliases_view containing the aliases of *this if it represents a known registered character encoding. Otherwise, returns an empty range of type text_encoding::aliases_view.
[edit] Parameters
(none)
[edit] Return value
A view containing aliases of the known registered character encoding represented by *this; otherwise an empty range.
[edit] Example
| This section is incomplete Reason: no example |