xentara-utils v2.0.4
The Xentara Utility Library
|
Determines if a type can be converted to a string view. More...
#include <xentara/utils/tools/TypeTraits.hpp>
Related Symbols | |
(Note that these are not member symbols.) | |
template<typename Type > | |
constexpr bool | kIsStringViewable |
Determines if a type can be converted to a string view. | |
template<typename Type > | |
constexpr bool | kIsNothrowStringViewable |
Determines if a type can be converted to a string view without throwing exceptions. | |
Determines if a type can be converted to a string view.
This trait checks whether the type can be converted to exactly one of std::string_view, std::wstring_view, std::u8string_view, std::u16string_view, and std::u32string_view, according to the rules of std::is_convertible.
|
related |
Determines if a type can be converted to a string view without throwing exceptions.
This value is true if the type can be converted to exactly one of std::string_view, std::wstring_view, std::u8string_view, std::u16string_view, and std::u32string_view, according to the rules of std::is_convertible, and that conversion is noexcept.
|
related |
Determines if a type can be converted to a string view.
This value is true if the type can be converted to exactly one of std::string_view, std::wstring_view, std::u8string_view, std::u16string_view, and std::u32string_view, according to the rules of std::is_convertible.