xieite ::type_list <Ts ...>::rev
Defined in fragment xieite :type_list
(header-only:
<xieite/meta/type_list.hpp>
)
Reverses the order of elements in a
xieite ::type_list
.Declaration
using rev =/* xieite::type_list<???> */ ;
Example
Possible output:import xieite ;int main () {using List =xieite ::type_list <int ,char ,float ,double >;xieite ::dump (xieite ::name <List ::rev >()); }
[View in Compiler Explorer]xieite::type_list<double, float, char, int>