rudolf.hladik
08/07/2020, 1:15 PMinterface Scope {
fun SomeObject.foo(): Bar = Bar()
}
// interface Scope is not under my control and I need to add extension function on another object so it would behave the same way like it would be in interface
// like
interface Scope {
fun SomeObject.foo(): Bar = Bar()
fun OtherObject.bar(): Foo = Foo()
}
elect
08/07/2020, 2:03 PMMarc Knaup
08/07/2020, 7:24 PM