That's not exactly how I remember it. Note:
Do we want a facility like this? SF 20 | F 6 | N 1 | A 0 | SA 0
The biggest objection, based on the wiki notes, seems to be that "it's
not a loop", and also folks concerned that if you exit the loop from an
early instantiation, the remaining instantiations still need to be well
formed. There were also various mutterings about the syntax (e.g. should
we write `static for` or `constexpr for` or some such instead of just
`for`).
That said, IIRC the consensus was to send it to SG7 to bake for a while...
On 2017-03-06 15:54, Nicol Bolas wrote:
> It seems to me that the generalized tuple unpacking proposal
> <
http://wg21.link/P0535> makes this all obsolete:
>
> auto t = std::make_tuple(100, "500", '!');
> [](auto& x) { std::cout << x; }([:]t)...;
This is probably true for the OP's proposal. Less so for P0589; it
doesn't allow for the flow control that P0589 can provide.
--
Matthew