17.6 — std::array and enumerations
In lesson , we discussed arrays and enumerations. Now that we have constexpr std::array in our toolkit, we’re going to continue that discussion and show a few additional tricks. Using static assert to ensure the proper number of array initializers When initializing a constexpr std::array using CTAD, the compiler will …