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
Usestemplate <typename R >using zip_range =/* xieite::type_list<???> */ ;
xieite ::type_list <Ts ...>::zip <>
internally.Example
Possible output: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 >>()); }
[View in Compiler Explorer]xieite::type_list<xieite::type_list<int, double>, xieite::type_list<char, void>, xieite::type_list<float, bool>>