Either

sealed class Either<out F, out S>

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard
data class Fail<out F> : Either<F, Nothing>
Link copied to clipboard
data class Success<out S> : Either<Nothing, S>