template<typename value_t>
concept xtd::textual = std::same_as<xtd::raw_type<type_t>, std::string> || std::same_as<xtd::raw_type<type_t>, std::u16string> || std::same_as<xtd::raw_type<type_t>, std::u32string> || std::same_as<xtd::raw_type<type_t>, std::u8string> || std::same_as<xtd::raw_type<type_t>, std::wstring> || std::same_as<xtd::raw_type<type_t>,
xtd::string> || std::same_as<xtd::raw_type<type_t>,
xtd::u16string> || std::same_as<xtd::raw_type<type_t>,
xtd::u32string> || std::same_as<xtd::raw_type<type_t>,
xtd::u8string> || std::same_as<xtd::raw_type<type_t>,
xtd::wstring> ||
xtd::textual_literal<type_t>;
Definition textual_literal.hpp:17
Definition textual.hpp:16
xtd::basic_string< xtd::char8 > u8string
Represents text as a sequence of UTF-8 code units.
Definition __string_definitions.hpp:76
xtd::basic_string< xtd::char32 > u32string
Represents text as a sequence of UTF-32 code units.
Definition __string_definitions.hpp:65
xtd::basic_string< char > string
Represents text as a sequence of UTF-8 code units.
Definition __string_definitions.hpp:43
xtd::basic_string< xtd::char16 > u16string
Represents text as a sequence of UTF-16 code units.
Definition __string_definitions.hpp:54
xtd::basic_string< xtd::wchar > wstring
Represents text as a sequence of UTF-16 code unit on Windows or UTF-32 code unit on non-Windows syste...
Definition __string_definitions.hpp:87