Is there a way for DDoc to generate documentation for inherited class
members in the documentation for a class?
class A {
int x;
}
/// Derived class
class B : A {
/// Another value
int y;
// ?? how to also show A.x in B's documentation?
}
T
--
Don't drink and derive. Alcohol and algebra don't mix.