Either

@Serializable(with = EitherSerializer::class)
sealed interface Either<T1, T2>(source)

Realization of this interface will contains at least one not null - optionalT1 or optionalT2

See also

Either.Companion.first
Either.Companion.second
onFirst
onSecond

Inheritors

Properties

Link copied to clipboard
abstract val optionalT1: Optional<T1>
Link copied to clipboard
abstract val optionalT2: Optional<T2>
Link copied to clipboard
open val t1OrNull: T1?
Link copied to clipboard
open val t2OrNull: T2?

Functions

Link copied to clipboard
inline fun <T1, R> Either<T1, *>.mapOnFirst(block: (T1) -> R): R?
Link copied to clipboard
inline fun <T2, R> Either<*, T2>.mapOnSecond(block: (T2) -> R): R?