Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why can't fold expressions appear in a constant expression?

c++ c++17

std::stable_sort: How to choose memory-optimised algorithm over time-optimised algorithm?

std::pair<auto, auto> return type

Why does std::optional::operator=(U&&) require U to be a non-scalar type?

What are the differences between std::variant and boost::variant?

string constructor taking two char* into another std::string works in c++14 but not c++17

c++ c++14 c++17

(v) is actually (*&v) since when?

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

do I put [[maybe unused]] on function declarations or definitions?

c++ gcc clang pragma c++17

How should I replace vector<uint8_t>::const_iterator in an API?

c++ c++17 binary-data idioms

Using std::string_view with api, what expects null terminated string

c++ c++17

Structured binding to replace std::tie abuse

Converting a pointer-to-member-of-base to a pointer-to-member-of-derived

c++ language-lawyer c++17

Are placeholders types of non-type template parameters interchangeable in case of template template parameter

C++17 And the Current State of Decimal Floating Point

How to use allocators in modern C++

Why are structured bindings in range-based for-loop just a copy and not a reference?

clang 5: std::optional instantiation screws std::is_constructible trait of the parameter type

Clang and GCC disagree in auto specifier for non-type template parameter in a casting C++17

Trailing comma in uniform initialization

Why does std::initializer_list in ctor not behave as expected?