Either

interface Either<L, R>

Inheritors

Types

Link copied to clipboard
data class Left<L, R>(val value: L) : Either<L, R>
Link copied to clipboard
data class Right<L, R>(val value: R) : Either<L, R>