I am currently creating a class with a constexpr constructor and I wonder if I can use an std::array to store the data of this class. Does the stan
constexpr
std::array
Because std::array is an aggregate, it can be initialized as a constexpr if and only if the underlying type T has a constexpr constructor (when presented with each initializer you provide).
T