xieite::type_list<Ts...>::append<>

Defined in header <xieite/meta/type_list.hpp>

Appends types to the back of a xieite::type_list {}.


Declaration

template<typename... Us>
using append = xieite::type_list<Ts..., Us...>;


Example

int main() {
	using List = xieite::type_list<int, char>::append<float, double>;

	xieite::dump(xieite::name<List>());
}
Possible output:
xieite::type_list<int, char, float, double>
[View in Compiler Explorer]