Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Are nested structured bindings possible?

How to get the address of a C++ lambda function within the lambda itself?

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

Difference between "if constexpr()" Vs "if()"

reinterpret_cast creating a trivially default-constructible object

Equivalent ternary operator for constexpr if?

Why has std::reduce been added in C++17?

c++ std c++17

How can I emulate destructuring in C++?

Where to use std::variant over union?

c++ c++17

Is there a nice way to assign std::minmax(a, b) to std::tie(a, b)?

Why did the range based 'for' loop specification change in C++17? [duplicate]

Changed rules for protected constructors in C++17?

Advantages of auto in template parameters in C++17

c++ templates auto 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>?