xieite ::type_list <Ts ...>::prepend_list <>
Defined in fragment xieite :type_list
(header-only:
<xieite/meta/type_list.hpp>
)
Prepends the contents of some type container to the front of a
xieite ::type_list
.Declaration
Usestemplate <typename List >using prepend_list =/* xieite::type_list<???> */ ;
prepend <>
internally.Example
Possible output:import xieite ;int main () {using Foo =xieite ::type_list <int ,char >;using Bar =xieite ::type_list <float ,double >;xieite ::dump (xieite ::name <Foo ::prepend_list <Bar >>()); }
[View in Compiler Explorer]xieite::type_list<float, double, int, char>