I've never done this.. but, how do I specify that ...
# getting-started
m
I've never done this.. but, how do I specify that a class implements parts of the interface by delegation? Like:
interface A: B, C; class DefaultA(val b: B, val c: C): B by b, C by c
(but now including
A
)