Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++26

Is `std::function` deprecated by `std::copyable_function` in C++26?

std::execution vs std::async [duplicate]

c++ asynchronous c++26

Why do we keep a redundant ctor in std::copyable_function?

Why does std::views::take_while() do so many function invocations? (even with `cache_latest`)

c++ std-ranges c++23 c++26

Why is `iterator_category` deleted in `std::views::concat::iterator` if it's a pure input iterator?

What's the most simple tuple implementation in C++26?

Is the author's union-based implementation of an optional<bool> well-defined in P2641?

Using C++ reflection to automatically generate arithmetic operators?

Why are polymorphic objects not trivially relocatable?

c++ gcc optimization clang c++26

When should I use a std::inplace_vector instead of a std::vector?

c++ std c++26

Why is std::is_trivial deprecated in C++26?

What are the implications of constexpr floating-point math?

Why no cleanup if a contract precondition fails?

Can reflection statements be directly used in if-constexpr?