| Header: | #include <templated_callables.h> |
| void | templated_function_with_defaulted_non_type_template_parameter() |
| void | templated_function_with_defaulted_template_template_parameter(Container<T, size>) |
| void | templated_function_with_defaulted_type_template_parameter(T) |
| void | templated_function_with_fixed_size_array_parameter(const char (&data)[Size]) |
| void | templated_function_with_non_type_template_parameter() |
| void | templated_function_with_non_type_template_parameter_pack() |
| void | templated_function_with_placeholder_non_type_template_parameter() |
| void | templated_function_with_template_template_parameter(K<T>) |
| void | templated_function_with_template_template_parameter_pack(Container<T>...) |
| void | templated_function_with_type_template_parameter(T) |
| void | templated_function_with_type_template_parameter_pack(Ts...) |
Containing headers for the tested free functions.
A templated function with a defaulted non-type template parameter Category.
A templated function with a defaulted template-template parameter Container and non-type parameter size.
A templated function with a defaulted type template parameter.
A templated function with a reference-to-array parameter data with a size given by Size.
A templated function with a non-defaulted non-type template parameter Category.
A templated function with a non-type template parameter pack Weights.
A templated function with a placeholder non-type template parameter Iterator.
A templated function with a non-defaulted template-template parameter K.
A templated function with a template-template parameter pack Container.
A templated function with a non-defaulted type template parameter.
A templated function with a type template parameter pack.