Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in string-view

Idiomatically split a string_view

c++ c++17 string-view

std::string_view compile time hashing

c++ hash std c++17 string-view

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

c++ stl string-view

How to compare string_view using if-constexpt in a constexpr context

How do gsl::string_span and std::string_view differ?

Why does passing `const char[N]` and `const char*` to view::c_str() yield different binaries, while string_view produces the same?

returning string_view from function

c++ c++17 string-view

How to use std::string_view::remove_prefix() on a constexpr string_view

c++ c++17 string-view

What does "owning" mean in the context of programming? [duplicate]

c++ string-view

When should I use std::string / std::string_view for parameter / return type

c++ string c++17 string-view

Why is std::string_view faster than const char*?

Is this a good practice to replace 'const std::string &' with 'std::string_view' or just 'std::string'? [duplicate]

Is there a string_view equivalent for other container types?

How to create a constexpr array with a sequence of string_views at compile time?

Is it safe to return a static string_view created from a string literal?

Why can't I create a std::string_view from std::string iterators?

Create span of string_views from C string array

c++ c++20 string-view std-span

Why is there no overload for printing `std::byte`?

Any gotchas replacing global const char[] with constexpr string_view?