Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Using C functions to manipulate std::string

c++ c++17 stdstring

Can C++ functions return a pointer to an array of known length?

c++ c++11 c++14 c++17

Predefined type list passed to a std::variant

`if constexpr` vs `if` in light of compiler optimization and code performance

c++ c++17 if-constexpr

Why is pmr::string so slow in these benchmarks?

c++ memory boost c++17

Alternative to declaring a type alias inside a class

c++ c++11 templates c++17

Is this reinterpret_cast problematic in principle, and/or in practice?

c++ c++17 language-lawyer

How to implement a universal function for both sequence and associative container?

friend, template, namespace

c++ templates c++17 friend

When is initializer_list allowed to be deduced?

c++ language-lawyer c++17

Substitution failure for template template argument

Conditionally creating members inside a class

c++ class c++17 if-constexpr

Is -Wreturn-std-move clang warning correct in case of objects in the same hierarchy?

c++ clang warnings c++17 move

g++ breaking change in std::filesystem::last_write_time

c++ g++ c++17

How to convert chrono::seconds to string in HH:MM:SS format in C++?

c++ c++17 c++-chrono

How can I combine an in place transformation, and a copy transformation?

Is it possible to ensure a constexpr function is called at most once at compile time?

c++ c++11 c++14 c++17 c++20

Templated lambdas in C++17 without an auto argument

Use of std::optional to pass a std::vector<int> to a functional by reference

c++ std c++17 stdoptional

Why can std::map::emplace usage leak memory?

c++ c++11 c++14 c++17