com.github.rs3vans.monadik / Either / Right

Right

class Right<out U : Any> : Either<Nothing, U>

Constructors

<init> Right(right: U)

Properties

left val left: Nothing?
right val right: U

Inherited Functions

component1 operator fun component1(): T?
component2 operator fun component2(): U?
swap fun swap(): Either<U, T>