Use If constexpr to Simplify Compile-Time Decisions
Learn to use if constexpr to simplify compile-time decisions.
We'll cover the following...
An if constexpr
(condition) statement is used where code needs to be executed based on a compile-time condition. The condition may be any constexpr
expression of type bool
.
How to do it
Consider the case where we have a template function ...