Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in string-view

Concatenating string_view objects

Correct way to printf() a std::string_view?

c++ c++17 printf string-view

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

c++ c++20 string-view

Use an external buffer for a string without copying

c++ string c++11 string-view

Creating a compile time string repeating a char n times

How to make a conversion from std::string_view to std::string

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*?

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

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