Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why isn't there a std::construct_at in C++17?

c++ c++17 placement-new

Do I need to put constexpr after else-if?

`std::variant` vs. inheritance vs. other ways (performance)

Exact moment of "return" in a C++-function

std::string s1 {"Modern C++", 3} vs std::string s1 {str, 3}

c++ string c++17

How do you implement Coroutines in C++

c++ coroutine c++17

What's the difference between static constexpr and static inline variables in C++17?

c++ c++17 constexpr

Why is the construction of std::optional<int> more expensive than a std::pair<int, bool>?

Get Apple clang version and corresponding upstream LLVM version

fatal error: filesystem: No such file or directory [closed]

c++ c++17

How the new range-based for loop in C++17 helps Ranges TS?

c++ c++11 for-loop c++17

C++17: Keep only some members when tuple unpacking

c++ tuples c++17

Cv-qualifications of prvalues (revisited)

Preparation for std::iterator Being Deprecated

Deprecated header <codecvt> replacement

c++ utf-8 c++17 utf-16 codecvt

Why is there no implicit conversion from std::string_view to std::string?

c++17 string-view

Initializing variables in an "if" statement

c++ c++17

Is it allowed for a compiler to optimize away a local volatile variable?

Understanding std::hardware_destructive_interference_size and std::hardware_constructive_interference_size

Is a pointer with the right address and type still always a valid pointer since C++17?