Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

Class with a deleted copy constructor can be still copied?

Eigen static lib memory align

c++ c++17 eigen

Shall structured binding to a copy of a const c-array be const?

Why does operator() change for std::function in C++17?

c++ c++14 c++17

get<string> for variants fail under clang++ but not g++

c++ c++17 clang++ variant

Why shared_locked introduced before shared_mutex

c++ locking c++14 c++17 mutex

Iterating over a parameter pack

Are intmax_t and uintmax_t guaranteed to be of the same size?

c++ c++17 language-lawyer

Can I capture lambda variables without std::function?

c++ lambda c++17

Can I declare a type [[nodiscard]] with 'using'?

c++ c++17 nodiscard

Is it undefined behavior to `reinterpret_cast` a `T*` to `T(*)[N]`?

What does the standard say about unaligned memory access?

How can I use a structured binding to copy a tuple-like object with elements whose type is T&?

Working around limitation of `constexpr` static data member with same type as enclosing class [duplicate]

Parallel std::copy complexity

c++ c++17 std

constexpr variable at namespace scope with and without explicit inline definition

What are the correct memory orders to use when inserting a node at the beginning of a lock free singly linked list?

Why is there no parallel `std::accumulate` in the C++ standard?

Decrementable requirements of general end iterators vs container `end()`

C++17 Tuple Unpacking

c++ tuples c++17