xieite ::type_list <Ts ...>::append_range <>
Defined in header <xieite/meta/type_list.hpp> Appends the template parameters of some type to the back of
Ts .Declaration
Usestemplate <typename R >using append_range =/* xieite::type_list<Ts..., ???> */ ;
xieite ::type_list <Ts ...>::append <> internally.Example
Possible output:int main () {using Foo =xieite ::type_list <int ,char >;using Bar =xieite ::type_list <float ,double >;xieite ::dump (xieite ::type_name <Foo ::append_range <Bar >>); }
[View in Compiler Explorer]xieite::type_list<int, char, float, double>