class Left<out T : Any> : Either<T, Nothing>
<init> |
Left(left: T) |
left |
val left: T |
right |
val right: Nothing? |
component1 |
operator fun component1(): T? |
component2 |
operator fun component2(): U? |
swap |
fun swap(): Either<U, T> |