Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

How do i use #include with exporting modules?

c++ c++20 c++-modules

how to guarantee initilization of a stack variable with a compile time constant

"atomic constraint depends on itself" error when compiling iterator in C++23

c++ iterator c++20 c++23

Get projected value from std::ranges algorithms

c++ c++20 std-ranges

How to let a template function accept anything you can construct some basic_string_view out

Does c++20 ranges have any view functions that do not return value?

c++ c++20 std-ranges

Is concept a variant of SFINAE

c++ language-lawyer 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?