com.github.rs3vans.monadik / Try / Success

Success

class Success<out T : Any> : Try<T>

Constructors

<init> Success(value: T)

Properties

exception val exception: Exception
value val value: T

Inherited Properties

isFailure val isFailure: Boolean
isSuccess val isSuccess: Boolean

Inherited Functions

component1 operator fun component1(): T?
component2 operator fun component2(): Exception?
ifFailure fun ifFailure(right: (Exception) -> Unit): Try<T>
not operator fun not(): Boolean
throwIfFailure fun throwIfFailure(): Try<T>
toEither fun toEither(): Either<T, Exception>
toOption fun toOption(): Option<T>