Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

How to understand constexpr in this example?

c++ c++17

What does greater<pair<int,int>> do actually?

c++ c++17

Iterating through a vector of tuples c+17 style don't work? [closed]

Is there any difference between using std::is_same<T,U>::value and std::is_same_v<T,U> in any scenario?

c++ c++17 type-traits

Constexpr constructible function object

Cast raw bytes to any datatype [duplicate]

c++ c++17 reinterpret-cast

Concatenating string_view objects

Operator.() in C++17 [duplicate]

c++ standards c++-faq c++17

C++17 operator==() and operator!=() code fails with C++20

Can a lambda appear in template arguments? [duplicate]

Function argument evaluation and side effects

Is it really well defined to check pointer alignment using the pointer's integer value?

Preference of conversion operator over copy constructor changes from C++14 to C++17?

How to use variable and move variable at the same time?

constexpr recursive function defined via lambda

c++ lambda c++17

C++ App crashes on std::minmax_element with Visual Studio 2022 (>= 17.10)

c++ c++17

SFINAE check for operator[] is more confused than I am?

c++ templates c++14 sfinae c++17

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

c++ c++17 printf string-view

Does using std::get on std::array give better performance?

c++ arrays performance get c++17

Two identical constructors however compiler selects the templated one