RSSAmplifier

Blog

Engineering the Craft

a4z.noexcept.devRSS feed ↗5 posts

Latest posts

Why C++26 Contracts might not work for all

C++26 contains contracts, a much-discussed feature. They are useful, but not the best choice for every use case.

Run CMake executable targets via CMake

A tiny CMake helper that builds a source file and adds a matching run-target for it.

(Maybe) All The Contract Papers

Some people might say that the upcoming {cpp} contracts feature is one of the best researched topics in {cpp}. I am not sure I agree, but a lot of work has gone into it.

The C++ Business Model, a new challenge for WG21

{cpp} is an old language, and so is its business model. And if the language needs some updates from time to time, its business model might also need to be modernized. But hold on, what is {cpp}'s business model? {cpp} is the specification of a programming language, so what are you talking about?

std::pmr::generator, a generator without heap allocation

C++23 std::generator heap-allocates the coroutine frame by default. With std::pmr::generator you can run the generator with a stack arena instead.