7 ms·
I’m curious to know why... Looks like typical mixin pattern, no?
by sharp11 8y ago
I’m curious to know why... Looks like typical mixin pattern, no?
- HNLogInShit 8y agomix-in
- delinka 8y agoAn interface declaration is not the right place for implementation. If you want a default implementation, use a base class and inherit, overriding if you don't want the default. This bug is now another good reason not to use default implementations on interfaces.