std::text_encoding::aliases
Min standard notice:
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.
# Declarations
constexpr aliases_view aliases() const noexcept;
(since C++26)
# Return value
A view containing aliases of the known registered character encoding represented by *this; otherwise an empty range.
# Example
This section is incompleteReason: no example