#pragma once #include #include // Source: https://gist.github.com/klmr/2775736#file-make_array-hpp template constexpr auto make_array(T&&... values) -> std::array::type>::type, sizeof...(T)> { return {std::forward(values)...}; }