Though you should (almost) never do that for a serious project, rolling your own STL is very interesting from an educational point of view. First, it will definitely improve your knowledge of how the language works.Second, without repeating the same …
Read moreImmediate functions in C++20
One of the accepted proposals for C++20 introduces immediate functions, that is, functions that are always evaluated at compile-time. This post will present these, by highlighting their differences with constexpr functions.
Read more