!u C++: constexpr vs consteval
constexpr
C++11 introduced constexpr specifier that enables the computation of functions and variables at compile time. Functions with known inputs are evaluated, and their return values are included in the final code, reducing its size.
However, pl...
blog.vivekg.net2 min read