You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::string_view is light weight non-owning (char*,size_t) pair which can serve as an interface to take both std::string and c-strings at a function call site. It can also serve to hold compile time string literals for easier use in a constexpr context, among other nice-to-haves.
The text was updated successfully, but these errors were encountered:
std::string_view is light weight non-owning (
char*
,size_t
) pair which can serve as an interface to take both std::string and c-strings at a function call site. It can also serve to hold compile time string literals for easier use in a constexpr context, among other nice-to-haves.The text was updated successfully, but these errors were encountered: