> Mixins can be used to do a lot (most? all?) of things CRTP is used for: > > class Class(alias MixMe) > { > mixin MixMe impl; > ... > void doSomething { > impl.doIt(); > } > } > where can I read about class parameters?