xte::end<>

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

Marks the end of a parameter list.


Definition

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



Example

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