0.3.0
Loading...
Searching...
No Matches
NAV::str::StdString Concept Reference

Concept limiting the type to std::string and std::wstring, but also allowing convertible types like const char*. More...

Concept definition

template<typename T>
concept NAV::str::StdString = std::convertible_to<T, std::string> || std::convertible_to<T, std::wstring>
Concept limiting the type to std::string and std::wstring, but also allowing convertible types like c...
Definition StringUtil.hpp:287

Detailed Description

Concept limiting the type to std::string and std::wstring, but also allowing convertible types like const char*.