Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++23

Combined with C++23 Deducing this and conversion operator with auto return type?

Which version of the C Standard Library does the C++23 Standard incorporate?

Implementation of std::start_lifetime_as()

Is string_view{ nullptr, 0 } valid?

c++ language-lawyer c++23

Why can't C++23's enumerate_view (unlike Range-v3's namesake) be piped into Range-v3's to_vector?

c++ c++23 std-ranges range-v3

explicit object accessing a protected member

c++ c++23

Is flat_map an STL container?

c++ stl containers c++23

Can you explicitly provide template arguments to std::gcd?

c++ language-lawyer c++23

Why does the use of `std::aligned_storage` allegedly cause UB due to it failing to "provide storage"?

c++ language-lawyer c++23

Any way to have an Implicit Lifetime Type with a user defined constructor?

How can I elegantly fill/initialize two (or more) ranges from a range containing pairs/tuples of elements?

c++ std-ranges c++23

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

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

How can I write an inline recursive lambda in C++?

c++ c++20 c++23

C++23 deducing this

c++ c++23

Why does `to_string( std::stacktrace::current() )` hang if called during Windows DLL loading

C++23: Is it valid to modify the elements of a `zip_view`?

Short-circuit in noexcept expressions

c++ c++23 noexcept

Cannot return a named rvalue reference in a function with return type of lvalue reference?

c++ rvalue lvalue c++23

C++ back method for sub-range not found after chunking list

c++ std-ranges c++23

Can std::ifstream and std::ofstream be used with a std::string_view filename argument?

c++ c++23