Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Why is it illegal to bind an r-value to a const l-value reference in special member functions?

Why hexadecimal floating constants in C++17?

Can constexpr-if-else bodies return different types in constexpr auto function?

Why does for_each return function by move

Differences between c++14 std::experimental::filesystem::v1 and c++17 std::filesystem?

c++ c++14 c++17

container of non-copyable in std::optional

c++ c++17

C++17 atomics and condition_variable deadlock

Removing an element from a std::set while iterating over it in C++17

c++ c++17 erase stdset

Pack expansion of variadic list of types into initializer list of complex types - is it legal?

Why must std::visit have a single return type?

c++ std c++17

Use Current Template as a Template Parameter to one of the Template Parameters

Invoking `constexpr` member function through reference - clang vs gcc

Implicit instantiation of function argument

c++ c++17

How can I try_emplace a POD struct in a std::map?

c++ struct stdmap emplace c++17

What is the idiomatic C++17 standard approach to reading binary files?

c++ file io c++17

Is there any guarantee on the size of an std::reference_wrapper?

Template deduction guide for function?

SFINAE : Delete a function with the same prototype

C++ range-v3 library: 'take'-ing first 3 perfect numbers works and halts; 'take'-ing first 4 doesn't stop after 4

How to use if constexpr in template fold expressions?