Gijs van Veen
Results
32
comments of
Gijs van Veen
If you want to account for value classes, I would propose to move to interfaces with default implementations, as that sort of meets both criteria (maintainability and maintaining possibility to...
You example is the reverse of what we need though. It would be: common ``` expect class Something : BaseToShareStuffBetweenTheActualImplementations() abstract class BaseToShareStuffBetweenTheActualImplementations { fun publicApi() { doSomethingCommon() platformFunction() }...