-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
1,054 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
p2994r0.html : naming-of-packs.md | ||
include ../md/mpark-wg21.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,231 @@ | ||
--- | ||
title: "On the Naming of Packs" | ||
document: P2994R0 | ||
date: today | ||
audience: EWG | ||
author: | ||
- name: Barry Revzin | ||
email: <[email protected]> | ||
toc: true | ||
--- | ||
|
||
<style type="text/css"> | ||
span.yellow { | ||
background-color: #ffff00; | ||
} | ||
</style> | ||
|
||
# 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: | ||
|
||
<table> | ||
<tr><th/><th>Single Element</th><th>Pack</th></tr> | ||
<tr><th style="vertical-align:middle;">Lambda Capture (since C++11)</th><td> | ||
```cpp | ||
[elem](){} | ||
``` | ||
</td><td> | ||
```cpp | ||
[...pack](){} | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Indexing [@P2662R2]</th><td> | ||
```cpp | ||
elem[0] | ||
``` | ||
</td><td> | ||
```cpp | ||
pack...[0] | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Expansion Statement[^exp] [@P1306R1]</th><td style="vertical-align:middle;"> | ||
```cpp | ||
template for (auto x : elem) | ||
``` | ||
</td><td > | ||
One of: | ||
```cpp | ||
template for (auto x : {pack...}) | ||
template for ... (auto x : pack) | ||
for ... (auto x : pack) | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Reflection [@P1240R2]</th><td> | ||
``` | ||
^elem | ||
``` | ||
</td><td style="vertical-align:middle;">🤷</td></tr> | ||
<tr><th style="vertical-align:middle;">Splice [@P1240R2]</th><td> | ||
```cpp | ||
[: elem :] | ||
``` | ||
</td><td> | ||
```cpp | ||
... [: pack :] ... | ||
``` | ||
</td></tr> | ||
</table> | ||
|
||
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. | ||
|
||
While having all the functionality available to us in the various proposals would be great, I think we can do better. | ||
|
||
[^exp]: 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. | ||
|
||
# Proposal | ||
|
||
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 pack_ 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 the syntax we already have for copy capture (and init-capture) of a pack today, and is basically the way that packs are introduced in various templates already. | ||
|
||
Applying that syntax to each of the facilities presented in the previous section: | ||
|
||
|
||
<table> | ||
<tr><th/><th>Single Element</th><th>Pack (Previous)</th><th>Pack (Proposed)</th></tr> | ||
<tr><th style="vertical-align:middle;">Lambda Capture<br />(since C++11)</th><td> | ||
```cpp | ||
[elem](){} | ||
``` | ||
</td><td> | ||
```cpp | ||
[...pack](){} | ||
``` | ||
</td><td> | ||
```cpp | ||
[@[\.\.\.pack]{.yellow}@](){} | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Indexing</th><td> | ||
```cpp | ||
elem[0] | ||
``` | ||
</td><td> | ||
```cpp | ||
pack...[0] | ||
``` | ||
</td><td> | ||
```cpp | ||
@[\.\.\.pack]{.yellow}@[0] | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Expansion Statement</th><td style="vertical-align:middle;"> | ||
```cpp | ||
template for (auto x : elem) | ||
``` | ||
</td><td > | ||
One of: | ||
```cpp | ||
template for (auto x : {pack...}) | ||
template for ... (auto x : pack) | ||
for ... (auto x : pack) | ||
``` | ||
</td><td style="vertical-align:middle;"> | ||
```cpp | ||
template for (auto x : @[\.\.\.pack]{.yellow}@) | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Reflection</th><td> | ||
``` | ||
^elem | ||
``` | ||
</td><td style="vertical-align:middle;">🤷</td><td> | ||
```cpp | ||
^@[\.\.\.pack]{.yellow}@ | ||
``` | ||
</td></tr> | ||
<tr><th style="vertical-align:middle;">Splice</th><td> | ||
```cpp | ||
[: elem :] | ||
``` | ||
</td><td> | ||
```cpp | ||
... [: pack :] ... | ||
``` | ||
</td><td> | ||
```cpp | ||
[: @[\.\.\.pack]{.yellow}@ :] ... | ||
``` | ||
</td></tr> | ||
</table> | ||
|
||
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. And it helps that we already use this syntax today, for lambda capture. | ||
|
||
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. | ||
|
||
Note that this syntax does lead to one obvious question: | ||
|
||
::: bq | ||
```cpp | ||
template <typename... Ts> | ||
void foo(Ts... pack) { | ||
// if this is how we get the first element of the pack | ||
auto first = ...pack[0]; | ||
|
||
// ... and this is how we iterate over it | ||
template for (auto elem : ... pack) { } | ||
|
||
// ... then what does this mean?? | ||
auto wat = ...pack; | ||
} | ||
``` | ||
::: | ||
Maybe there's something interesting that `...pack` might mean, like some language-tuple thing. I can't immediately come up with a use-case though. So I think a decent enough answer to that question is: it means nothing. It's just not allowed. In the same way that when invoking a non-static member function, `x.f(y)` is a valid expression but `x.f` by itself is not. If in the future, somebody finds a use-case, we can also make it work later. The various pack operations (lambda capture, indexing, expansion, reflection, splice) are just bespoke grammar rules that happen to share this common `...pack` syntax - despite `...pack` itself having no meaning. | ||
## Wording | ||
None of these proposals exist in the working draft today, so there's no wording to offer against the working draft. However, I can provide a diff against the [@P2662R2] wording, which is pretty small (the actual feature is unchanged, only the syntax for it, which is to say only the grammar). | ||
Change the grammar in [expr.prim.pack.index] (the rest of the description is fine): | ||
::: bq | ||
```diff | ||
$pack-index-expression$: | ||
- $identifer$ ... [ $constant-expression$ ] | ||
+ ... $identifer$ [ $constant-expression$ ] | ||
``` | ||
::: | ||
|
||
Change the grammar in [dcl.type.pack.indexing] (likewise, the rest of the description remains unchanged): | ||
|
||
::: bq | ||
```diff | ||
$pack-index-specifier$: | ||
- $typedef-name$ ... [ $constant-expression$ ] | ||
+ ... $typedef-name$ [ $constant-expression$ ] | ||
``` | ||
::: | ||
|
||
Change the example in [dcl.type.decltype] to use `...pack[0]` instead of `pack...[0]`. | ||
|
||
Change the added sentence in [temp.type]: | ||
|
||
::: bq | ||
For a template parameter pack `T`, [`T...[$constant-expression$]`]{.rm} [`...T[$constant-expression$]`]{.addu} denotes a unique dependent type. | ||
::: | ||
|
||
Remove the added annex C entry in [decl.array], since there's no longer any ambiguity. | ||
|
||
--- | ||
references: | ||
- id: circle-recurrence | ||
citation-label: circle-recurrence | ||
title: "`[recurrence]`" | ||
author: | ||
- family: Sean Baxter | ||
issued: | ||
- year: 2023 | ||
month: 05 | ||
day: 02 | ||
URL: https://github.com/seanbaxter/circle/blob/master/new-circle/README.md#recurrence | ||
--- |
Oops, something went wrong.