More safety, maybe more speed.
Use constexpr for faster, smaller, and safer code
by Trail of Bits
From the article:
With the release of C++14, the standards committee strengthened one of the coolest modern features of C++: constexpr. Now, C++ developers can write constant expressions and force their evaluation at compile-time, rather than at every invocation by users. This results in faster execution, smaller executables and, surprisingly, safer code...
Add a Comment
Comments are closed.