Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in cpp-core-guidelines

Ensures() - guideline support library

What's the difference between passing span<T> and std::array as arguments?

c++ cpp-core-guidelines

When do I use "__attribute__((nonnull))" vs "not_null<T*>"?

Understanding gsl::narrow implementation

C++ Core Guidelines for static member variables

How can a compiler generated default constructor be more efficient than a self-written one that does nothing but initialize members?

What is wasted in this example from the Cpp Core Guidelines?

c++ cpp-core-guidelines

Why can't I construct a gsl::span with a brace-enclosed initializer list

Is CppCoreGuidelines C.21 correct?

gsl::not_null<T*> vs. std::reference_wrapper<T> vs. T&

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

What is a "span" and when should I use one?