Posts

std::span in C++20: More Details

A std::span represents an object that refers to a contiguous sequence of objects. Today, I want to write…
TimelineCpp20CoreLanguage

std::span in C++20: Bounds-Safe Views for Sequences of Objects

/
In my seminar, I often hear the question: How can I safely pass a plain array to a function? With C++20,…