Posts

A std::advance Implementation with C++98, C++17, and C++20

/
In my last post, I presented a possible std::advance implementation based on tag dispatching. One of…
constexprIf

constexpr if

/
In today's post, I want to introduce an exciting C++17 feature: constexpr if. constexpr if enables it…