xte::sad<>

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

Marks the end of a parameter list.


Definition

template<typename>
concept sad = /* false */;
Cannot be satisfied by any argument.



Example

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