Search code examples
Is a std::string_view literal guaranteed to be null-terminated?...


c++stringc++17standardsstring-view

Read More
how to construct a constexpr static_string from constexpr std::string_view...


c++constexprstring-viewconstant-expression

Read More
Concatenating string_view objects...


c++c++17string-concatenationstring-view

Read More
Is it safe to pass a temporary std::string to a function accepting std::string_view?...


c++c++17lifetimestring-view

Read More
How to name algorithm in c++ for process items in collection which can add or remove items?...


c++stringalgorithmswitch-statementstring-view

Read More
Safely convert std::string_view to int (like stoi or atoi)...


c++stringc++17atoistring-view

Read More
concatenate string_views in constexpr...


c++c++17constexprstring-view

Read More
Difference between std::basic_string_view<T> and std::span<T>...


c++string-viewguideline-support-library

Read More
Implementation of string_view formatted stream ouput...


c++c++17string-view

Read More
Why does gdb octal-escape characters when querying a string assigned to a char array containing cont...


c++stringg++escapingstring-view

Read More
How to implement constexpr string_view multiplication with a number...


c++c++20constexprfmtstring-view

Read More
Why doesn't std::string_view have assign() and clear() methods?...


c++stlstring-view

Read More
Is `std::map<std::string, int>` faster than `std::map<std::string_view, int>`?...


c++c++20string-view

Read More
File to std::string_view...


c++stlstring-view

Read More
Create span of string_views from C string array...


c++c++20string-viewstd-span

Read More
How to split a std::string into a range (v3) of std::string_views?...


c++stringrange-v3string-view

Read More
Is it safe to pass an `std::string` temporary into an `std::string_view` parameter?...


c++c++17stdstringstring-view

Read More
implicitly convert string to string_view...


c++stringimplicit-conversionstring-view

Read More
Why doesn't std::string have a constructor that directly takes std::string_view?...


c++stringc++17constructor-overloadingstring-view

Read More
How to correctly create std::string from a std::string_view?...


c++stringiteratorc++17string-view

Read More
convert std::uint16_t to std::string_view...


c++stringc++17string-view

Read More
Can `split_view` or a composition of multiple `spilt_view`s be used to split a `string`/`string_view...


c++splitstd-rangesc++23string-view

Read More
How to join compile-time string-like objects while keeping the API simple?...


c++constexprstring-concatenationstring-viewchar-pointer

Read More
Why is there no support for concatenating std::string and std::string_view?...


c++stringc++17language-designstring-view

Read More
Tokenize a string with std::views...


c++c++20string-view

Read More
Why `std::string_view` is not modifiable?...


c++c++17language-designstring-view

Read More
Correct way to printf() a std::string_view?...


c++c++17printfstring-view

Read More
Initialize std::list<CustomType> from std::initializer_list<std::string_view> in ctor&#3...


c++c++17string-viewmember-initializationstdinitializerlist

Read More
How to find the first occurring string_view in another string_view?...


c++algorithmc++23string-view

Read More
How to extract std::string_view tokens from std::ranges::lazy_split_view using >= C++23?...


c++splitstdc++23string-view

Read More
BackNext