Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++17

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

Why rebind<U>::other are deprecated in C++17 and removed in C++20?

c++ c++17 c++20 allocator

big ints with boost : too large to be represented in any integer type

c++ boost c++17

Why does sorting a vector with execution::par take longer than normal sort (gcc 10.1.0)?

Parameter packs with specialization for one data type

How to best convert a std::string_view to QString?

qt c++17

Is there a non-owning reference similar to std::bitset to provide bitwise operation and count for data in other container?