xte::sad<>

Defined in header <xte/meta/sad.hpp>

A utility for marking the end of a parameter list.


Definition

template<typename>
concept sad = /* false */;


Example

[]<int a, int b, xte::sad..., int c = a + b> {
	std::println("{}", c);
}.operator()<1, 2>();
Output:
3
[View in Compiler Explorer]