gsl::not_null vs. std::reference_wrapper vs. T&

References are not pointers that cannot be null. References are semantically very different to pointers. References have value assignment and comparison semantics; that is, assignment or comparison operations involving references read and write the referenced value. Pointers have (counterintuitively) reference assignment and comparison semantics; that is, assignment or comparison operations involving pointers read and write … Read more

What’s the difference between span and array_view in the gsl library?

We talked with people in the library working group in the standards committee. They wanted the array_view they are trying to get into the standard to be read only. For the core guidelines, we needed an abstraction that was read and write. To avoid a clash between the (potential) standards and the guidelines support library … Read more