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
Possible output:int main () {using List =xieite ::type_list <int ,char >::append <float ,double >;xieite ::dump (xieite ::name <List >()); }
[View in Compiler Explorer]xieite::type_list<int, char, float, double>