Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

How can I parse and format RFC-9557 date times with time zones in C++?

c++ c++20 c++-chrono rfc-9557

Three-way comparison operator defaulted out of class is not a friend [duplicate]

How to sum a std::range?

c++ c++20 std-ranges

How to write a C++20 function accepting a range with both T and const T?

Is there a way to wait for a mutex (or similar object) to unlock without locking it afterwards?

c++ multithreading c++20

Using zip_view piped into a filter_view

c++ c++20 std-ranges range-v3

std::chrono::from_stream gcc availability, is unavailable in gcc 10.1.0

c++ gcc c++20

How to invoke a templated static class method having tuple input in a constexpr way

c++ c++20 constexpr

What's Clang's problem with my code? GCC and MSVC think it's fine

Does the type of std::vector<int>::iterator change when you increment it with '++'?

How to define a 'concept' that uses a 'concept' in C++ 20?

How do I reuse a C++23 `std::generator` instance as a range in multiple range expressions?

c++ c++20 std-ranges c++23

Modifying object representation in presence of padding bits

Compiler disagreement on using std::vector in constexpr context

What is the point of two types of module files (interface and implementation) in C++20?

c++ c++20

How to do a logical 'or' of requirements in a single concept?

Why isn't it an error if the arguments are more than required in std::format?

Why is it not allowed to create a view for `std::owning_view`?

c++ c++20 std-ranges

How to use C++ std::ranges to replace substring in string?