Success

class Success<VALUE>(value: VALUE) : Result<VALUE>

Represents a successful Result, containing a value.

Constructors

Link copied to clipboard
fun <VALUE> Success(value: VALUE)

Functions

Link copied to clipboard
operator fun component1(): VALUE?
Link copied to clipboard
operator fun component2(): Throwable?
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
val value: VALUE