Suppose the following function
template<size_t N>
constexpr std::array<float, N> make_ones()
{
std::array<float, N> ret{};
for (size_t k = 0; k != N; ++k)
{
ret[k] = 1.0f;
}
return ret;
}
Is it possible to write that with a fold expression? The problem is that I do not have a pack to expand.
Not with fold expression but pack expansion as well as with index sequence, in c++20 you could do:
See live demo in godbolt.org
For compilers that doesn't support C++20 or later, you might do