771 B
771 B
To Read
- Iterators -> spans -> ranges
- constexpr
- Can be evaluated at compile-time instead of runtime
- Shift processing to compile-time, quicker at runtime
- Can be run at run-time
- Not the only way to be used in constant expressions
const
- Can use with const
constexpr const int N = 5;
- same as
constexpr int N = 5;
- same as
constexpr
impliesconst
Conan
cmake-conan https://github.com/conan-io/cmake-conan