Sealed Interface (Kotlin)
A sealed interface restricts which types can implement it to those declared in the same module, giving exhaustive when checks like a sealed class but with…
A sealed interface restricts which types can implement it to those declared in the same module, giving exhaustive when checks like a sealed class but with…