Tagged Questions
1
vote
1answer
102 views
Understanding traits in Kotlin
In Kotlin we'll have possibility to create a "trait that may require a class being extended on the call side", like
class Bar {}
trait T1 : Bar {}
class Foo : Bar, T1, T2, T3 {}
class Wrong : ...
0
votes
1answer
127 views
What do you call an object level equivalent of Mixin/Traits system, is there a Pattern name for it?
I previously asked about what Mixins were, and have begun to get the gist of what the pattern means. But it got me wondering if there is a common pattern name for doing something like Mixins at an ...