Useful in constructors for DRY.
Usage:
mixin(initMember("someVar")); mixin(initMember("a", "b", "c"));
Turns Into:
this.someVar = someVar; this.a = a; this.b = b; this.c = c;
See Implementation
Useful in constructors for DRY.
Usage:
Turns Into: