A class that uses aliased template types as parameters. More...
| Header: | #include <template_sugar.h> |
| void | process(ContainerAlias<int> items) |
| void | transform(const ContainerAlias<double> &source, ContainerAlias<double> &dest) |
AliasUser exercises canonical fallback for type aliases around template types. The alias introduces an extra layer of type sugar that the original fallback gating would have handled, verifying that broadening the fallback doesn't regress alias resolution.
Processes the given items.
Transforms elements from source into dest.