✅ how can i let an interface implement a function of a super-interface, instead of shadowing it?
this doesnt compile, because
IOne.Foo
is considered a separate function that shadows ITwo.Foo
. how do i tell IOne
to provide a default implementation for ITwo.Foo
instead of shadowing it?8 Replies
Unknown User•8mo ago
Message Not Public
Sign In & Join Server To View
TeBeCo
REPL Result: Success
Console Output
Compile: 504.000ms | Execution: 28.647ms | React with ❌ to remove this embed.
this is exactly what i was looking for, thanks!
Unknown User•8mo ago
Message Not Public
Sign In & Join Server To View
i dont know what it means either xD
Unknown User•8mo ago
Message Not Public
Sign In & Join Server To View
TeBeCo
REPL Result: Success
Console Output
Compile: 508.964ms | Execution: 29.475ms | React with ❌ to remove this embed.
well its an isolated example. my use case isn't that simple of course