On the Naming of Packs

Document #: P2994R1
Date: 2024-02-14
Project: Programming Language C++
Audience: EWG
Reply-to: Barry Revzin
<>

1 Revision History

Changed the proposal because it doesn’t… actually work.

2 Introduction

C++11 introduced variadic templates, which dramatically changed the way we write all sorts of code. Even if the only thing you can do with a parameter pack was expand it. C++17 extended this support to fold-expressions (and there’s ongoing work to extend fold-expressions in a few directions [P2355R1] or [circle-recurrence]), but we still don’t have any operations that apply to the pack itself - as opposed to consuming the whole thing.

It’s tricky to add support for this, because we have to be careful that the syntax for applying an operation on the pack itself is distinct from the syntax from applying that operation on an element, otherwise we could end up with ambiguities. For example, with indexing, we cannot use pack[0] to be the first element in the pack, because something like f(pack + pack[0]...) is already a valid expression that cannot mean adding the first element of the pack to every element in the pack.

As such, all the ongoing efforts to add more pack functionality choose a distinct syntax. Consider the following table, where elem denotes a single variable and pack denotes a function parameter pack:

Single Element Pack
Indexing [P2662R2]
elem[0]
pack...[0]
Expansion Statement1 [P1306R1]
template for (auto x : elem)

One of:

template for (auto x : {pack...})
template for ... (auto x : pack)
for ... (auto x : pack)
Reflection [P1240R2]
^elem
🤷
Splice [P1240R2]
[: elem :]
... [: pack :] ...

As you can see, the syntaxes on the right are distinct from the syntaxes on the left - which is important for those syntaxes to be viable.

What is unfortunate, in my opinion, is that the syntaxes on the right are also all distinct from each other. We don’t have orthogonality here - knowing how to perform an operation on an element doesn’t necessarily inform you of the syntax to perform that operation on a pack. There’s an extra ... that you have to type, but where does it go? It depends.

Additionally, while the indexing syntax here, pack...[0], works just fine for indexing, it can’t be generalized to the other operations:

While having all the functionality available to us in the various proposals would be great, I think we can do better.

Note that lambda capture isn’t included in the above table, since [pack...] is basically a regular pack expansion and [...pack1=pack2] is introducing a new pack, which is a slightly different operation than what I’m talking about here.

3 An Idea

I would like to suggest that rather than coming up with a bespoke syntax for every pack operation we need to do - that we instead come up with a bespoke syntax for naming a pack2 and use that syntax for each operation. This gives us orthogonality and consistency.

Thankfully, we don’t even really need to come up with what the syntax should be for naming a pack - we already kind of have it: ...pack. This is basically the way that packs are introduced in various templates and lambda init-capture already.

Applying that syntax to each of the facilities presented in the previous section:

Single Element Pack (Previous) Pack (Proposed)
Indexing
elem[0]
pack...[0]
...pack[0]
Expansion Statement
template for (auto x : elem)

One of:

template for (auto x : {pack...})
template for ... (auto x : pack)
for ... (auto x : pack)
template for (auto x : ...pack)
Reflection
^elem
🤷
^...pack
Splice
[: elem :]
... [: pack :] ...
[: ...pack :] ...

Here, all the syntaxes in the last column are the same as the syntaxes in the first column, except using ...pack instead of elem. These syntaxes are all distinct and unambiguous.

It is pretty likely that many people will prefer at least one syntax in the second column to its corresponding suggestion in the third column (I certainly do). But, on the whole, I think the consistency and orthogonality outweigh these small preferences.

Incidentally, this syntax also avoids the potential ambiguity mentioned in [P2662R2] for its syntax proposal (that having a parameter of T...[1] is valid syntax today, which with this proposal for indexing into the pack would instead be spelled ...T[1] which is not valid today), although given that two compilers don’t even support that syntax today makes this a very minor, footnote-level advantage.

Or at least, I thought that this was a pretty good idea. But it does run into one very unfortunate problem. What does this mean:

template for (auto x : ...pack[0])

There are two possible interpretations:

  1. This is a tuple-expansion over the tuple that is the 1st element from pack (...pack[0] is indexing into pack)
  2. This is a pack-expansion over the unexpanded pack expression pack[0] (i.e. p[0] for each p in pack).

Now, you could come up with some way to disambiguate one of these over the other, where the other syntax requires parentheses. But requiring a disambiguation completely defeats the purpose of coming up with unique syntax! We can’t have nice things because there are no nice things.

As a result, since I don’t think there actually is a viable uniform syntax option, we’re left with several different choices for each operation.

3.1 Pack Indexing

  1. pack...[0]
  2. ...pack[0]

Here, given the lack of uniform syntax option, there doesn’t seem to be any benefit to change from what’s in the working draft. The only advantage I thought (2) had was the potential for uniformity. Pack indexing is a kind of expansion in a way, so the existing syntax makes sense.

3.2 Pack Expansion

  1. template for (auto x : ...pack)
  2. template for (auto x : {pack...})
  3. template for ... (auto x : pack)
  4. for ... (auto x : pack)

Here, I think sticking with template for is better than not. Both the tuple-expansion and pack-expansion forms do expansion, both of which might do template instantiation, so having template for for both is sensible. The only question is where the dots go.

I think it’s also important to discuss order of evaluation here, since:

Expansion
Equivalent
template for (auto x : ...f(pack)) {
  g(x);
}
g(f(pack...[0]));
g(f(pack...[1]));
g(f(pack...[2]));
// ...

That is, the expression being pack-expanded over is not evaluated N times up front, it is evaluated on demand for each iteration. The syntax in (2) - where we write {pack...} might suggest otherwise, which is otherwise my only reason to prefer (1) over (2), but it’s a weak preference. I prefer (1) and (2) over (3) because the ... are attached to the pack being expanded.

3.3 Range Splicing

  1. [: ...r :]...
  2. ...[: r :]...

Here, we need different syntax for splicing a constexpr range of reflections than splicing a single element. And it seems much better to disambiguate the two using the same splice syntax ([: and :]) but with added ellipses rather than introducing a new kind of splice syntax.

It depends on how you think about splicing a range which syntax works out better. Personally, I prefer [: ... r :] since conceptually it seems like we’re unpacking the range into the splice operator - rather than splicing the range itself.

4 Proposal

This paper proposes that:

This gives us as least a little bit of uniformity, probably as much as we can get.

Since this revision no longer suggests any changes to anything currently in the standard, there is no wording to provide.

5 References

[circle-recurrence] Sean Baxter. 2023-05-02. [recurrence].
https://github.com/seanbaxter/circle/blob/master/new-circle/README.md#recurrence

[P1240R2] Daveed Vandevoorde, Wyatt Childers, Andrew Sutton, Faisal Vali. 2022-01-14. Scalable Reflection.
https://wg21.link/p1240r2

[P1306R1] Andrew Sutton, Sam Goodrick, Daveed Vandevoorde. 2019-01-21. Expansion statements.
https://wg21.link/p1306r1

[P2355R1] S. Davis Herring. 2023-02-13. Postfix fold expressions.
https://wg21.link/p2355r1

[P2662R2] Corentin Jabot, Pablo Halpern. 2023-07-15. Pack Indexing.
https://wg21.link/p2662r2


  1. For expansion statements, even though we’ve agreed on the template for syntax, there does not appear to be a published document that uses that syntax. Also, the last revision doesn’t have support for expanding over a pack due to the lack of syntax - the three options presented here are various ideas that have come up in various conversations with people.↩︎

  2. What I mean by naming a pack here is basically using the pack as an operand in some function directly, as opposed to being part of a pack expansion. I think of this as naming the pack itself. Maybe referring to this problem as having a pack operand might be more to the point.↩︎