Skip to content

Commit

Permalink
Update Rule-Reference.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH authored May 31, 2018
1 parent 6bab12e commit 81f934f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/Rule-Reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ is not how they are implemented, therefore:
However, rule equivalence does show exactly where the `raise<>` rule is inserted
and therefore which rule will be used to call the control class' `raise()`-method.

## Packs
## Parameter Packs

The documentation will use packs if zero-or-more or one-or-more of a parameter is allowed.
The documentation will use [(template parameter) packs](https://en.cppreference.com/w/cpp/language/parameter_pack) if zero-or-more or one-or-more of a (template) parameter is allowed.
As an example, `seq< R... >` may have zero-or-more template parameters.
If it is zero, i.e. if you write `seq<>`, we say that `R` is "empty".
If it is at least one rule, i.e. `seq< A >` or `seq< A, B, C >`, `R` is "non-empty".
Expand Down

0 comments on commit 81f934f

Please sign in to comment.