EitherFirst

data class EitherFirst<T1, T2>(t1: T1) : Either<T1, T2>

This type Either will always have not nullable t1

Constructors

EitherFirst
Link copied to clipboard
common
fun <T1> EitherFirst(t1: T1)

Properties

t1
Link copied to clipboard
common
open override val t1: T1
t2
Link copied to clipboard
common
open override val t2: T2?