RSS Parrot

BETA

🦜 Standard C++ | Articles & Books

@isocpp.org.blog@rss-parrot.net

I'm an automated parrot! I relay a website's RSS feed to the Fediverse. Every time a new post appears in the feed, I toot about it. Follow me to get all new posts in your Mastodon timeline! Brought to you by the RSS Parrot.

---

Your feed and you don't want it here? Just e-mail the birb.

Site URL: isocpp.org/blog

Feed URL: isocpp.org/blog/rss/category/articles-books

Posts: 10

Followers: 1

C++26: Erroneous Behaviour -- Sandor Dargo

Published: May 17, 2025 23:38

C++’s undefined behaviour impacts safety. Sandor Dargo explains how and why uninitialised reads will become erroneous behaviour in C++26, rather than being undefined behaviour. C++26: Erroneous Behaviour by Sandor Dargo From the article: …

Writing Senders -- Lucian Radu Teodorescu

Published: May 15, 2025 23:33

In the December issue of Overload [Teodorescu24], we provided a gentle introduction to senders/receivers, arguing that it is easy to write programs with senders/receivers. Then, in the February issue [Teodorescu25a], we had an article that walked the…

Using Token Sequences to Iterate Ranges -- Barry Revzin

Published: May 13, 2025 20:48

There was a StackOverflow question recently that led me to want to write a new post about Ranges. Specifically, I wanted to write about some situations in which Ranges do more work than it seems like they should have to. And then what we can do to avoid…

How to Join or Concat Ranges, C++26 -- Bartlomiej Filipek

Published: May 7, 2025 20:55

C++ continues to refine its range library, offering developers more efficient and expressive ways to manipulate collections. In this post, we'll dive into three powerful range adaptors—concat_view, join_view, and join_with_view—exploring their differences,…

C++26: Removing Language Features -- Sandor Dargo

Published: May 1, 2025 20:49

C++ is often seen as an ever-growing language, with each new standard introducing powerful features while maintaining backward compatibility. However, C++26 takes a step toward simplification by officially removing deprecated features, including implicit…

Details of std::mdspan from C++23 -- Bartlomiej Filipek

Published: April 25, 2025 20:35

In this article, we’ll see details of std::mdspan, a new view type tailored to multidimensional data. We’ll go through type declaration, creation techniques, and options to customize the internal functionality. Details of std::mdspan from C++23 by…