xieite::type_list<Ts...>::prepend_range<>

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

Prepends the contents of some type container to the front of a xieite::type_list {}.


Declaration

template<typename R>
using prepend_range = /* xieite::type_list<???, Ts...> */;
Uses xieite::type_list<Ts...>::prepend<> internally.


Example

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

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