xieite ::type_list <Ts ...>::prepend <>
Defined in header <xieite/meta/type_list.hpp>
Prepends types to the front of a
xieite ::type_list {}
.Declaration
template <typename... Us >using prepend =xieite ::type_list <Ts ...,Us ...>;
Example
Possible output:int main () {using List =xieite ::type_list <int ,char >::prepend <float ,double >;xieite ::dump (xieite ::name <List >()); }
[View in Compiler Explorer]xieite::type_list<float, double, int, char>