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