Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++23

Address-ordering of members of a class / struct

c++ language-lawyer c++23

std::ranges::algorithms differ in semantics compared to range-based for() loop in regard to the usage of a particular view

c++ for-loop std-ranges c++23

Why rules for returning move reference since C++23 are more permissive?

c++ language-lawyer c++23

MSVC rejects program with member function call while gcc and clang accept

Bytewise atomic memcpy and sequence locks in C++23

c++ atomic c++23 seqlock

C++ Template Function Ambiguity for Wrapper Type Specialization

c++ c++23

What is the best approach for using std::ranges/std::views with std::expected in C++23?

c++ c++20 c++23

how to iterate over "enumerated zip" of 2 containers in C++23?

c++ std-ranges c++23

Directly initialize std::array with a fixed count of elements from std::vector [duplicate]

How to determine if a Type supports printing or formatting using C++ standard lib?

Regarding the pause-resume data loss in MSVC std::experimental::generator

What will happen if I call `allocate_at_least(0)` according to C++23 standard?

import std module with gcc-15

c++ gcc cmake c++23 c++-modules

How to convert std::chrono::system_clock::now() to boost::mysql::datetime::time_point

How can I return directly result of a function call returning std::expected?

Why do `std::views::adjacent` iterators increment all underlying iterators instead of using a more performant shift?

c++ iterator c++23 std-ranges

Accessing a row of a std::mdspan as std::span

c++ c++23 mdspan