Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++20

Does clang++ 12 support C++20 std::construct_at?

c++ clang++ c++20

Why does Visual Studio compile this function correctly without optimisation, but incorrectly with optimisation?

C++20 Streams aka Ranges

Placement new and delete in constexpr functions

c++ c++20

C++20 std::ranges: Range adapter to skip every nth element

c++ c++20 std-ranges

why I can't use a take() after a istream_view in c++20

c++ c++20 std-ranges

Can std::chrono::from_stream convert string to time_point with microseconds accuracy?

c++ date parsing c++20 chrono

Use 'using enum' in C++20 in classes possible?

c++ enums c++20 enum-class

Constexpr member function

c++ c++17 constexpr c++20

Check for function existance on other type using C++ concepts

Deducing the type of an integer by its compiletime value

c++ c++20

Can't use std::cin with char* or char[] in C++20

c++ c++20

Can this member function selection code be written without std::invoke?

Why are time_of_day and hh_mm_ss two different types in C++20?

c++ c++20 chrono

Why does views::reverse not work with iota_view<int64_t, int64_t>

c++ c++20 std-ranges

Why do C++20 ranges not provide only pipe syntax?

c++ c++20 range-v3

Using concepts for function overload resolution (instead of SFINAE)

Using fold expression with std::apply on two tuples

Why can I modify const_cast-ed object in constexpr function?

C++ TS Concepts and accessors

c++ c++-concepts c++20