com.github.rs3vans.monadik / Option / Some

Some

class Some<out T : Any> : Option<T>

Constructors

<init> Some(value: T)

Properties

value val value: T

Inherited Properties

absent val absent: Boolean
present val present: Boolean

Inherited Functions

ifAbsent fun ifAbsent(right: () -> Unit): Option<T>
not operator fun not(): Boolean
toLeft fun <U : Any> toLeft(right: U): Either<T, U>
toRight fun <U : Any> toRight(left: U): Either<U, T>
toTry fun toTry(exception: () -> Exception = { NullPointerException() }): Try<T>