xieite::type_list<Ts...>::zip_range<>

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

Zips the elements of a xieite::type_list {} with the elements of another range.


Declaration

template<typename R>
using zip_range = /* xieite::type_list<???> */;
Uses xieite::type_list<Ts...>::zip<> internally.


Example

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

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