Returns L sorted in such a way that the most derived types come first.
Type tuple.
Sorted L.
class A { } class B : A { } class C : B { } static assert(is(DerivedToFront!(B, A, C) == AliasSeq!(C, B, A)));
See Implementation
Returns L sorted in such a way that the most derived types come first.