🚵♂️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import kotlin.contracts.ExperimentalContracts | |
| import kotlin.contracts.contract | |
| import kotlin.contracts.InvocationKind | |
| /** | |
| * Zero-cost union type. | |
| * | |
| * [Left] and [Right] must not be subtypes of one another, and must not be the same type. | |
| */ | |
| @JvmInline |
OlderNewer