class Success<out V : Any> : Result<V, Nothing>
Success(value: V) |
val value: V |
fun component1(): V? |
|
fun equals(other: Any?): Boolean |
|
fun get(): V |
|
fun hashCode(): Int |
|
fun toString(): String |
open operator fun component2(): E? |
|
fun <X> fold(success: (V) -> X, failure: (E) -> X): X |