Should be used to inherit constructor, since D doesn't do that
Inserts this(A...)(A args) { super(args); } in place of mixin.
If you'd to supply incorrect args compilation will fail, so
it's fairly safe way to solve that problem
Usage:
classNewElement: Element {
// inherits constructors of ElementmixininheritConstructor;
// your constructorsthis(stringthing, intnotthing) { /+ ... +/ }
}
Should be used to inherit constructor, since D doesn't do that
Inserts this(A...)(A args) { super(args); } in place of mixin. If you'd to supply incorrect args compilation will fail, so it's fairly safe way to solve that problem Usage: