Returns all the base classes of T, the direct parent class comes first, $(D_PSYMBOL Object) ist the last one.
The only type that doesn't have any base class is $(D_PSYMBOL Object).
Class type.
Base classes of T.
interface I1 { } interface I2 { } class A : I1, I2 { } class B : A, I1 { } class C : B, I2 { } static assert(is(BaseClassesTuple!C == AliasSeq!(B, A, Object))); static assert(BaseClassesTuple!Object.length == 0);
See Implementation
Returns all the base classes of T, the direct parent class comes first, $(D_PSYMBOL Object) ist the last one.
The only type that doesn't have any base class is $(D_PSYMBOL Object).