Returns the type from the type tuple L that is most derived from T.
The type to compare to.
Type tuple.
The type most derived from T.
class A { } class B : A { } class C : B { } static assert(is(MostDerived!(A, C, B) == C));
See Implementation
Returns the type from the type tuple L that is most derived from T.